Parent Directory
|
Revision Log
feat: add basic utilities and more system calls
1 | #ifndef PLIBC_STRING_H |
2 | #define PLIBC_STRING_H |
3 | |
4 | #include "stddef.h" |
5 | |
6 | size_t strlen (const char *str); |
7 | const char *strerror (int errnum); |
8 | void *memcpy (void *dest, const void *src, size_t n); |
9 | |
10 | #endif /* PLIBC_STRING_H */ |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |