1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/include/kernelmq/stdlib.h
2017-11-04 11:43:55 +00:00

20 lines
362 B
C

#ifndef KERNELMQ_INCLUDED_STDLIB
#define KERNELMQ_INCLUDED_STDLIB 1
#ifdef __cplusplus
extern "C" {
#endif
void kmemset(void *buffer, unsigned char value, unsigned long size);
unsigned int kstrlen(const char *s);
char *kstrncpy(char *dest, const char *src, unsigned long length);
void kitoa(char *buf, int base, int d);
#ifdef __cplusplus
}
#endif
#endif