Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added MIT License | 2023-05-06 | 6 | -0/+36 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Added Initial Implementation of memory and allocation function | 2023-05-06 | 7 | -0/+83 | |
Signed-off-by: Marc Pervaz Boocha <mboocha@sudomsg.xyz> On branch main Your branch is up to date with 'origin/main'. Changes to be committed: new file: include/alloc.h new file: include/calt.h new file: include/mem.h new file: include/meson.build new file: meson.build new file: meson_options.txt new file: src/alloc/alloc.c new file: src/alloc/calloc.c new file: src/alloc/free.c new file: src/alloc/malloc.c new file: src/alloc/memdup.c new file: src/alloc/meson.build new file: src/alloc/realloc.c new file: src/mem/memccpy.c new file: src/mem/memchr.c new file: src/mem/memcmp.c new file: src/mem/memcpy.c new file: src/mem/memhash.c new file: src/mem/memlen.c new file: src/mem/memmem.c new file: src/mem/memmove.c new file: src/mem/memrchr.c new file: src/mem/memrev.c new file: src/mem/memset.c new file: src/mem/memswap.c new file: src/mem/memzero.c new file: src/mem/meson.build new file: src/meson.build new file: test/alloc/meson.build new file: test/mem/memset.c new file: test/mem/memzero.c new file: test/mem/meson.build new file: test/meson.build |