]> pd.if.org Git - pdclib/blobdiff - opt/malloc-solar/realloc.c
* Change the style of inclusion of the internal/ headers. Modern preprocessors
[pdclib] / opt / malloc-solar / realloc.c
diff --git a/opt/malloc-solar/realloc.c b/opt/malloc-solar/realloc.c
new file mode 100644 (file)
index 0000000..099ad5d
--- /dev/null
@@ -0,0 +1,58 @@
+/* $Id$ */
+
+/* void * realloc( void *, size_t )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <stdlib.h>
+#include <string.h>
+#include <stddef.h>
+
+#ifndef REGTEST
+
+/* TODO: Primitive placeholder. Improve. */
+
+void * realloc( void * ptr, size_t size )
+{
+    void * newptr = NULL;
+    if ( ptr == NULL )
+    {
+        return malloc( size );
+    }
+    if ( size > 0 )
+    {
+        struct _PDCLIB_memnode_t * baseptr = (struct _PDCLIB_memnode_t *)( (char *)ptr - sizeof( struct _PDCLIB_memnode_t ) );
+        if ( baseptr->size >= size )
+        {
+            /* Current memnode is large enough; nothing to do. */
+            return ptr;
+        }
+        else
+        {
+            /* Get larger memnode and copy over contents. */
+            if ( ( newptr = malloc( size ) ) == NULL )
+            {
+                return NULL;
+            }
+            memcpy( newptr, ptr, baseptr->size );
+        }
+    }
+    free( ptr );
+    return newptr;
+}
+
+#endif
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main( void )
+{
+    /* tests covered in malloc test driver */
+    return TEST_RESULTS;
+}
+
+#endif
+