/[osn-commons]/trunk/plibc/lib/malloc.h
ViewVC logotype

Annotation of /trunk/plibc/lib/malloc.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 51 - (hide annotations)
Fri Aug 16 18:34:43 2024 UTC (7 months, 2 weeks ago) by rakinar2
File MIME type: text/x-c
File size: 354 byte(s)
feat: add basic utilities and more system calls

1 rakinar2 47 #ifndef PLIBC_MALLOC_H
2     #define PLIBC_MALLOC_H
3    
4 rakinar2 51 #include "stddef.h"
5 rakinar2 47
6     void *malloc (size_t size);
7     void *calloc (size_t nmemb, size_t size);
8     void *realloc (void *ptr, size_t size);
9     void free (void *ptr);
10    
11     void bzero (void *ptr, size_t size);
12    
13     #ifdef _PLIBC_INTERNALS
14     void __plibc_heap_reset (void);
15     #endif /* _PLIBC_INTERNALS */
16    
17     #endif /* PLIBC_MALLOC_H */

team@onesoftnet.eu.org
ViewVC Help
Powered by ViewVC 1.1.26