x-engine-c v0.2.13
The C engine for x-lang
Loading...
Searching...
No Matches
x-lib.h
Go to the documentation of this file.
1#ifndef X_LIB_H
2#define X_LIB_H
3
23#include "x-stdlib.h"
24
31x_char_t *x_lib_inttostr(x_int_t num, x_char_t *p_str, unsigned short base);
32
34void *x_lib_memdup(const void *p_src, size_t size);
35
37x_int_t x_lib_strtoint(const x_char_t *p_str, x_char_t **pp_end, unsigned short base);
38
41#endif /* X_LIB_H */
x_char_t * x_lib_inttostr(x_int_t num, x_char_t *p_str, unsigned short base)
Definition x-lib.c:46
x_int_t x_lib_strtoint(const x_char_t *p_str, x_char_t **pp_end, unsigned short base)
Definition x-lib.c:128
void * x_lib_memdup(const void *p_src, size_t size)
Definition x-lib.c:93
C standard library replacements.
#define num(N)
Definition char.c:77
long x_int_t
Definition x.h:129
char x_char_t
Definition x.h:138