microblaze: remove TRAD_SYNOPSIS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
parent
59235deeec
commit
4e8c64b928
@ -15,14 +15,10 @@ FUNCTION
|
|||||||
INDEX
|
INDEX
|
||||||
abort
|
abort
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
SYNOPSIS
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
void abort(void);
|
void abort(void);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
|
||||||
#include <stdlib.h>
|
|
||||||
void abort();
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
Use <<abort>> to signal that your program has detected a condition it
|
Use <<abort>> to signal that your program has detected a condition it
|
||||||
cannot deal with. Normally, <<abort>> ends your program's execution.
|
cannot deal with. Normally, <<abort>> ends your program's execution.
|
||||||
|
@ -34,16 +34,10 @@ FUNCTION
|
|||||||
INDEX
|
INDEX
|
||||||
strcmp
|
strcmp
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
SYNOPSIS
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
int strcmp(const char *<[a]>, const char *<[b]>);
|
int strcmp(const char *<[a]>, const char *<[b]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
|
||||||
#include <string.h>
|
|
||||||
int strcmp(<[a]>, <[b]>)
|
|
||||||
char *<[a]>;
|
|
||||||
char *<[b]>;
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
<<strcmp>> compares the string at <[a]> to
|
<<strcmp>> compares the string at <[a]> to
|
||||||
the string at <[b]>.
|
the string at <[b]>.
|
||||||
|
@ -34,16 +34,10 @@ FUNCTION
|
|||||||
INDEX
|
INDEX
|
||||||
strcpy
|
strcpy
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
SYNOPSIS
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
char *strcpy(char *restrict <[dst]>, const char *restrict <[src]>);
|
char *strcpy(char *restrict <[dst]>, const char *restrict <[src]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
|
||||||
#include <string.h>
|
|
||||||
char *strcpy(<[dst]>, <[src]>)
|
|
||||||
char *<[dst]>;
|
|
||||||
char *<[src]>;
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
<<strcpy>> copies the string pointed to by <[src]>
|
<<strcpy>> copies the string pointed to by <[src]>
|
||||||
(including the terminating null character) to the array
|
(including the terminating null character) to the array
|
||||||
|
@ -34,15 +34,10 @@ FUNCTION
|
|||||||
INDEX
|
INDEX
|
||||||
strlen
|
strlen
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
SYNOPSIS
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
size_t strlen(const char *<[str]>);
|
size_t strlen(const char *<[str]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
|
||||||
#include <string.h>
|
|
||||||
size_t strlen(<[str]>)
|
|
||||||
char *<[src]>;
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
The <<strlen>> function works out the length of the string
|
The <<strlen>> function works out the length of the string
|
||||||
starting at <<*<[str]>>> by counting chararacters until it
|
starting at <<*<[str]>>> by counting chararacters until it
|
||||||
|
Loading…
x
Reference in New Issue
Block a user