1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00
libkernaux/include/kernaux/stdlib.h

31 lines
514 B
C
Raw Normal View History

2020-11-29 19:00:47 -05:00
#ifndef KERNAUX_INCLUDED_STDLIB
#define KERNAUX_INCLUDED_STDLIB 1
#ifdef __cplusplus
extern "C" {
#endif
2020-11-29 19:25:30 -05:00
void kernaux_memset(
void *buffer,
unsigned char value,
unsigned long size
)
__attribute__((nonnull));
unsigned int kernaux_strlen(const char *s) __attribute__((nonnull));
char *kernaux_strncpy(
char *dest,
const char *src,
unsigned long slen
)
__attribute__((nonnull));
2020-11-29 19:48:58 -05:00
void kernaux_itoa(int d, char *buf, int base) __attribute__((nonnull));
2020-11-29 19:25:30 -05:00
2020-11-29 19:00:47 -05:00
#ifdef __cplusplus
}
#endif
#endif