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
	strcat
6
	strcat
Line 7... Line 7...
7
 
7
 
8
ANSI_SYNOPSIS
8
ANSI_SYNOPSIS
9
	#include 
9
	#include 
Line 10... Line 10...
10
	char *strcat(char *<[dst]>, const char *<[src]>);
10
	char *strcat(char *restrict <[dst]>, const char *restrict <[src]>);
11
 
11
 
12
TRAD_SYNOPSIS
12
TRAD_SYNOPSIS
13
	#include 
13
	#include 
Line 59... Line 59...
59
/*SUPPRESS 560*/
59
/*SUPPRESS 560*/
60
/*SUPPRESS 530*/
60
/*SUPPRESS 530*/
Line 61... Line 61...
61
 
61
 
62
char *
62
char *
63
_DEFUN (strcat, (s1, s2),
63
_DEFUN (strcat, (s1, s2),
64
	char *s1 _AND
64
	char *__restrict s1 _AND
65
	_CONST char *s2)
65
	_CONST char *__restrict s2)
66
{
66
{
67
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
67
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
Line 68... Line 68...
68
  char *s = s1;
68
  char *s = s1;