aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdclib/functions/stdlib/realloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pdclib/functions/stdlib/realloc.c')
-rw-r--r--src/pdclib/functions/stdlib/realloc.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/pdclib/functions/stdlib/realloc.c b/src/pdclib/functions/stdlib/realloc.c
new file mode 100644
index 0000000..cbc01d4
--- /dev/null
+++ b/src/pdclib/functions/stdlib/realloc.c
@@ -0,0 +1,56 @@
+/* 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