2011-08-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/misc/ffs.c, libc/string/bcmp.c, libc/string/bcopy.c, libc/string/bzero.c, libc/string/index.c, libc/string/rindex.c, libc/string/strcasecmp.c, libc/string/strncasecmp.c: Let synopsis reference "#include <strings.h>".
This commit is contained in:
parent
0792b19670
commit
da344d0ea9
@ -1,3 +1,10 @@
|
||||
2011-08-23 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libc/misc/ffs.c, libc/string/bcmp.c, libc/string/bcopy.c,
|
||||
libc/string/bzero.c, libc/string/index.c, libc/string/rindex.c,
|
||||
libc/string/strcasecmp.c, libc/string/strncasecmp.c:
|
||||
Let synopsis reference "#include <strings.h>".
|
||||
|
||||
2011-08-23 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libc/posix/regexec.c: Define "nope" only #ifndef NDEBUG.
|
||||
|
@ -6,9 +6,11 @@ INDEX
|
||||
ffs
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <strings.h>
|
||||
int ffs(int <[word]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <strings.h>
|
||||
int ffs(<[word]>);
|
||||
|
||||
DESCRIPTION
|
||||
|
@ -6,11 +6,11 @@ INDEX
|
||||
bcmp
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
int bcmp(const void *<[s1]>, const void *<[s2]>, size_t <[n]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
int bcmp(<[s1]>, <[s2]>, <[n]>)
|
||||
const void *<[s1]>;
|
||||
const void *<[s2]>;
|
||||
|
@ -3,7 +3,7 @@ FUNCTION
|
||||
<<bcopy>>---copy memory regions
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
void bcopy(const void *<[in]>, void *<[out]>, size_t <[n]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
|
@ -6,11 +6,11 @@ INDEX
|
||||
bzero
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
void bzero(void *<[b]>, size_t <[length]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
void bzero(<[b]>, <[length]>)
|
||||
void *<[b]>;
|
||||
size_t <[length]>;
|
||||
|
@ -6,11 +6,11 @@ INDEX
|
||||
index
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
char * index(const char *<[string]>, int <[c]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
char * index(<[string]>, <[c]>);
|
||||
char *<[string]>;
|
||||
int *<[c]>;
|
||||
|
@ -10,7 +10,7 @@ ANSI_SYNOPSIS
|
||||
char * rindex(const char *<[string]>, int <[c]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
char * rindex(<[string]>, <[c]>);
|
||||
char *<[string]>;
|
||||
int *<[c]>;
|
||||
|
@ -6,11 +6,11 @@ INDEX
|
||||
strcasecmp
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
int strcasecmp(const char *<[a]>, const char *<[b]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
int strcasecmp(<[a]>, <[b]>)
|
||||
char *<[a]>;
|
||||
char *<[b]>;
|
||||
|
@ -6,11 +6,11 @@ INDEX
|
||||
strncasecmp
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
int strncasecmp(const char *<[a]>, const char * <[b]>, size_t <[length]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
int strncasecmp(<[a]>, <[b]>, <[length]>)
|
||||
char *<[a]>;
|
||||
char *<[b]>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user