All paths moved to path.h.
Cleanup in curses.h: removed reg definition. All include files reformatted for 4-space indent.
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
* All rights reserved. The Berkeley software License Agreement
|
||||
* specifies the terms and conditions for redistribution.
|
||||
*/
|
||||
#ifndef NULL
|
||||
#define NULL 0
|
||||
#ifndef NULL
|
||||
#define NULL 0
|
||||
#endif
|
||||
|
||||
#ifndef _SIZE_T
|
||||
@@ -12,35 +12,35 @@
|
||||
typedef unsigned size_t;
|
||||
#endif
|
||||
|
||||
char *strcat (char *, const char *);
|
||||
char *strncat (char *, const char *, size_t);
|
||||
char *strcpy (char *, const char *);
|
||||
char *strncpy (char *, const char *, size_t);
|
||||
char *strcat (char *, const char *);
|
||||
char *strncat (char *, const char *, size_t);
|
||||
char *strcpy (char *, const char *);
|
||||
char *strncpy (char *, const char *, size_t);
|
||||
|
||||
char *strstr (const char *, const char *);
|
||||
char *strstr (const char *, const char *);
|
||||
|
||||
int strcmp (const char *, const char *);
|
||||
int strncmp (const char *, const char *, size_t);
|
||||
size_t strlen (const char *);
|
||||
int strcmp (const char *, const char *);
|
||||
int strncmp (const char *, const char *, size_t);
|
||||
size_t strlen (const char *);
|
||||
|
||||
int memcmp (const void *, const void *, size_t);
|
||||
int memcmp (const void *, const void *, size_t);
|
||||
|
||||
void *memmove (void *, const void *, size_t);
|
||||
void *memccpy (void *, const void *, int, size_t);
|
||||
void *memchr (const void *, int, size_t);
|
||||
void *memcpy (void *, const void *, size_t);
|
||||
void *memset (void *, int, size_t);
|
||||
char *strchr (const char *, int);
|
||||
void *memccpy (void *, const void *, int, size_t);
|
||||
void *memchr (const void *, int, size_t);
|
||||
void *memcpy (void *, const void *, size_t);
|
||||
void *memset (void *, int, size_t);
|
||||
char *strchr (const char *, int);
|
||||
|
||||
char *strdup (const char *);
|
||||
char *strpbrk (const char *, const char *);
|
||||
char *strrchr (const char *, int);
|
||||
char *strsep (char **, const char *);
|
||||
char *strtok (char *, const char *);
|
||||
char *strtok_r (char *, const char *, char **);
|
||||
char *strdup (const char *);
|
||||
char *strpbrk (const char *, const char *);
|
||||
char *strrchr (const char *, int);
|
||||
char *strsep (char **, const char *);
|
||||
char *strtok (char *, const char *);
|
||||
char *strtok_r (char *, const char *, char **);
|
||||
|
||||
size_t strcspn (const char *, const char *);
|
||||
size_t strspn (const char *, const char *);
|
||||
size_t strcspn (const char *, const char *);
|
||||
size_t strspn (const char *, const char *);
|
||||
|
||||
char *strerror (int);
|
||||
const char *syserrlst (int);
|
||||
|
||||
Reference in New Issue
Block a user