<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cart/test/alloc, branch main</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/cart/atom/test/alloc?h=main</id>
<link rel='self' href='http://git.sudomsg.com/cart/atom/test/alloc?h=main'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/cart/'/>
<updated>2023-05-07T05:14:11Z</updated>
<entry>
<title>Added Basic Error codes, Tests and de-inlining</title>
<updated>2023-05-07T05:14:11Z</updated>
<author>
<name>Marc Pervaz Boocha</name>
<email>mboocha@sudomsg.xyz</email>
</author>
<published>2023-05-07T05:14:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/cart/commit/?id=97a91843ffac0bb3aa42540c6e5d3ddea75af489'/>
<id>urn:sha1:97a91843ffac0bb3aa42540c6e5d3ddea75af489</id>
<content type='text'>
Error codes needs to be ingrated with the alloc module
Tests now have great coverage in the mem module (&gt;75%).

Signed-off-by: Marc Pervaz Boocha &lt;mboocha@sudomsg.xyz&gt;

On branch main
Your branch is up to date with 'origin/main'.

Changes to be committed:
      modified:   include/alloc.h
      new file:   include/err.h
      modified:   include/mem.h
      modified:   include/meson.build
      modified:   readme.md
      modified:   src/alloc/free.c
      modified:   src/alloc/malloc.c
      new file:   src/err/errstr.c
      new file:   src/err/meson.build
      new file:   src/err/set_err.c
      modified:   src/mem/memccpy.c
      modified:   src/mem/memchr.c
      modified:   src/mem/memcmp.c
      modified:   src/mem/memcpy.c
      modified:   src/mem/memlen.c
      modified:   src/mem/memmem.c
      modified:   src/mem/memmove.c
      modified:   src/mem/memrchr.c
      modified:   src/mem/memrev.c
      modified:   src/mem/memset.c
      modified:   src/mem/memswap.c
      modified:   src/mem/memzero.c
      modified:   src/meson.build
      new file:   test/alloc/memdup.c
      modified:   test/alloc/meson.build
      new file:   test/mem/memccpy_nullnull.c
      new file:   test/mem/memchr.c
      new file:   test/mem/memchr_notfound.c
      new file:   test/mem/memcmp_diff.c
      new file:   test/mem/memcmp_prefix.c
      new file:   test/mem/memcmp_same.c
      new file:   test/mem/memcmp_samenull.c
      new file:   test/mem/memcmp_sing.c
      new file:   test/mem/memcpy_null_prefix.c
      new file:   test/mem/memcpy_null_same.c
      new file:   test/mem/memcpy_nullnull.c
      new file:   test/mem/memcpy_prefix.c
      new file:   test/mem/memcpy_same.c
      new file:   test/mem/memlen.c
      new file:   test/mem/memlen_overflow.c
      new file:   test/mem/memmove_backward.c
      new file:   test/mem/memmove_null_backward.c
      new file:   test/mem/memmove_null_overlap.c
      new file:   test/mem/memmove_null_prefix.c
      new file:   test/mem/memmove_null_same.c
      new file:   test/mem/memmove_null_sing.c
      new file:   test/mem/memmove_nullnull.c
      new file:   test/mem/memmove_overlap.c
      new file:   test/mem/memmove_prefix.c
      new file:   test/mem/memmove_same.c
      new file:   test/mem/memmove_sing.c
      new file:   test/mem/memrchr.c
      new file:   test/mem/memrchr_notfound.c
      new file:   test/mem/memrev.c
      new file:   test/mem/memset_null.c
      new file:   test/mem/memset_nullnull.c
      new file:   test/mem/memswap.c
      new file:   test/mem/memswap_null.c
      new file:   test/mem/memswap_same.c
      new file:   test/mem/memzero_null.c
      new file:   test/mem/memzero_nullnull.c
      modified:   test/mem/meson.build
      modified:   test/meson.build
</content>
</entry>
<entry>
<title>Added Initial Implementation of memory and allocation function</title>
<updated>2023-05-06T11:20:16Z</updated>
<author>
<name>Marc Pervaz Boocha</name>
<email>mboocha@sudomsg.xyz</email>
</author>
<published>2023-05-06T11:20:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/cart/commit/?id=e29276915341a8e1da04e7c938270eb1091256c0'/>
<id>urn:sha1:e29276915341a8e1da04e7c938270eb1091256c0</id>
<content type='text'>
Signed-off-by: Marc Pervaz Boocha &lt;mboocha@sudomsg.xyz&gt;

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
</content>
</entry>
</feed>
