diff options
author | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2023-05-06 17:27:51 +0530 |
---|---|---|
committer | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2023-05-06 17:27:51 +0530 |
commit | 56e96e9d9c8869c2fd05062764b9b3db0fc7b431 (patch) | |
tree | bac398bcf4293898d2541ce6635a5d2881021dbb /LICENSE | |
parent | Added Initial Implementation of memory and allocation function (diff) | |
download | cart-56e96e9d9c8869c2fd05062764b9b3db0fc7b431.tar cart-56e96e9d9c8869c2fd05062764b9b3db0fc7b431.tar.gz cart-56e96e9d9c8869c2fd05062764b9b3db0fc7b431.tar.bz2 cart-56e96e9d9c8869c2fd05062764b9b3db0fc7b431.tar.lz cart-56e96e9d9c8869c2fd05062764b9b3db0fc7b431.tar.xz cart-56e96e9d9c8869c2fd05062764b9b3db0fc7b431.tar.zst cart-56e96e9d9c8869c2fd05062764b9b3db0fc7b431.zip |
Added MIT License
On branch main
Your branch is up to date with 'origin/main'.
Changes to be committed:
new file: ../LICENSE
modified: ../include/alloc.h
modified: ../include/calt.h
modified: ../include/mem.h
modified: alloc/alloc.c
modified: alloc/calloc.c
modified: alloc/free.c
modified: alloc/malloc.c
modified: alloc/memdup.c
modified: alloc/realloc.c
modified: mem/memccpy.c
modified: mem/memchr.c
modified: mem/memcmp.c
modified: mem/memcpy.c
modified: mem/memhash.c
modified: mem/memlen.c
modified: mem/memmem.c
modified: mem/memmove.c
modified: mem/memrchr.c
modified: mem/memrev.c
modified: mem/memset.c
modified: mem/memswap.c
modified: mem/memzero.c
Diffstat (limited to '')
-rw-r--r-- | LICENSE | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ +MIT License + +Copyright (c) 2023 Marc Pervaz Boocha + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + |