Subversion Repositories Kolibri OS

Rev

Rev 4874 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 4921
Line 5... Line 5...
5
INDEX
5
INDEX
6
	strncat
6
	strncat
Line 7... Line 7...
7
 
7
 
8
ANSI_SYNOPSIS
8
ANSI_SYNOPSIS
9
	#include 
9
	#include 
-
 
10
	char *strncat(char *restrict <[dst]>, const char *restrict <[src]>,
Line 10... Line 11...
10
	char *strncat(char *<[dst]>, const char *<[src]>, size_t <[length]>);
11
                      size_t <[length]>);
11
 
12
 
12
TRAD_SYNOPSIS
13
TRAD_SYNOPSIS
13
	#include 
14
	#include 
Line 63... Line 64...
63
#error long int is not a 32bit or 64bit byte
64
#error long int is not a 32bit or 64bit byte
64
#endif
65
#endif
Line 65... Line 66...
65
 
66
 
66
char *
67
char *
67
_DEFUN (strncat, (s1, s2, n),
68
_DEFUN (strncat, (s1, s2, n),
68
	char *s1 _AND
69
	char *__restrict s1 _AND
69
	_CONST char *s2 _AND
70
	_CONST char *__restrict s2 _AND
70
	size_t n)
71
	size_t n)
71
{
72
{
72
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
73
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)