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:
Ralf Corsepius 2011-08-23 12:01:51 +00:00
parent 0792b19670
commit da344d0ea9
9 changed files with 21 additions and 12 deletions

View File

@ -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> 2011-08-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/posix/regexec.c: Define "nope" only #ifndef NDEBUG. * libc/posix/regexec.c: Define "nope" only #ifndef NDEBUG.

View File

@ -6,9 +6,11 @@ INDEX
ffs ffs
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <strings.h>
int ffs(int <[word]>); int ffs(int <[word]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <strings.h>
int ffs(<[word]>); int ffs(<[word]>);
DESCRIPTION DESCRIPTION

View File

@ -6,11 +6,11 @@ INDEX
bcmp bcmp
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <string.h> #include <strings.h>
int bcmp(const void *<[s1]>, const void *<[s2]>, size_t <[n]>); int bcmp(const void *<[s1]>, const void *<[s2]>, size_t <[n]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <string.h> #include <strings.h>
int bcmp(<[s1]>, <[s2]>, <[n]>) int bcmp(<[s1]>, <[s2]>, <[n]>)
const void *<[s1]>; const void *<[s1]>;
const void *<[s2]>; const void *<[s2]>;

View File

@ -3,7 +3,7 @@ FUNCTION
<<bcopy>>---copy memory regions <<bcopy>>---copy memory regions
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <string.h> #include <strings.h>
void bcopy(const void *<[in]>, void *<[out]>, size_t <[n]>); void bcopy(const void *<[in]>, void *<[out]>, size_t <[n]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS

View File

@ -6,11 +6,11 @@ INDEX
bzero bzero
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <string.h> #include <strings.h>
void bzero(void *<[b]>, size_t <[length]>); void bzero(void *<[b]>, size_t <[length]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <string.h> #include <strings.h>
void bzero(<[b]>, <[length]>) void bzero(<[b]>, <[length]>)
void *<[b]>; void *<[b]>;
size_t <[length]>; size_t <[length]>;

View File

@ -6,11 +6,11 @@ INDEX
index index
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <string.h> #include <strings.h>
char * index(const char *<[string]>, int <[c]>); char * index(const char *<[string]>, int <[c]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <string.h> #include <strings.h>
char * index(<[string]>, <[c]>); char * index(<[string]>, <[c]>);
char *<[string]>; char *<[string]>;
int *<[c]>; int *<[c]>;

View File

@ -10,7 +10,7 @@ ANSI_SYNOPSIS
char * rindex(const char *<[string]>, int <[c]>); char * rindex(const char *<[string]>, int <[c]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <string.h> #include <strings.h>
char * rindex(<[string]>, <[c]>); char * rindex(<[string]>, <[c]>);
char *<[string]>; char *<[string]>;
int *<[c]>; int *<[c]>;

View File

@ -6,11 +6,11 @@ INDEX
strcasecmp strcasecmp
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <string.h> #include <strings.h>
int strcasecmp(const char *<[a]>, const char *<[b]>); int strcasecmp(const char *<[a]>, const char *<[b]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <string.h> #include <strings.h>
int strcasecmp(<[a]>, <[b]>) int strcasecmp(<[a]>, <[b]>)
char *<[a]>; char *<[a]>;
char *<[b]>; char *<[b]>;

View File

@ -6,11 +6,11 @@ INDEX
strncasecmp strncasecmp
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <string.h> #include <strings.h>
int strncasecmp(const char *<[a]>, const char * <[b]>, size_t <[length]>); int strncasecmp(const char *<[a]>, const char * <[b]>, size_t <[length]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <string.h> #include <strings.h>
int strncasecmp(<[a]>, <[b]>, <[length]>) int strncasecmp(<[a]>, <[b]>, <[length]>)
char *<[a]>; char *<[a]>;
char *<[b]>; char *<[b]>;