1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-07-31 22:00:58 -04:00
kernel/kernelmq/stdlib.h
2020-11-25 14:37:15 +05:00

20 lines
360 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 slen);
void kitoa(char *buf, int base, int d);
#ifdef __cplusplus
}
#endif
#endif