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>
* libc/posix/regexec.c: Define "nope" only #ifndef NDEBUG.

View File

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

View File

@ -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]>;

View File

@ -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

View File

@ -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]>;

View File

@ -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]>;

View File

@ -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]>;

View File

@ -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]>;

View File

@ -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]>;