19 lines
461 B
C
19 lines
461 B
C
#ifndef NEXUS_STRING_H
|
|
#define NEXUS_STRING_H
|
|
|
|
#include "lfs_config.h"
|
|
|
|
#ifndef _SIZE_T_DEFINED
|
|
#define _SIZE_T_DEFINED
|
|
typedef unsigned long size_t;
|
|
#endif
|
|
|
|
void *memchr(const void *s, int c, size_t n);
|
|
void *memcpy(void *dest, const void *src, size_t n);
|
|
void *memset(void *s, int c, size_t n);
|
|
int memcmp(const void *s1, const void *s2, size_t n);
|
|
void *memmove(void *dest, const void *src, size_t n);
|
|
double strtod(const char *nptr, char **endptr);
|
|
|
|
#endif
|