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
	stpcpy
6
	stpcpy
Line 7... Line 7...
7
 
7
 
8
ANSI_SYNOPSIS
8
ANSI_SYNOPSIS
9
	#include 
9
	#include 
Line 10... Line 10...
10
	char *stpcpy(char *<[dst]>, const char *<[src]>);
10
	char *stpcpy(char *restrict <[dst]>, const char *restrict <[src]>);
11
 
11
 
12
TRAD_SYNOPSIS
12
TRAD_SYNOPSIS
13
	#include 
13
	#include 
Line 58... Line 58...
58
#error long int is not a 32bit or 64bit byte
58
#error long int is not a 32bit or 64bit byte
59
#endif
59
#endif
Line 60... Line 60...
60
 
60
 
61
char*
61
char*
62
_DEFUN (stpcpy, (dst, src),
62
_DEFUN (stpcpy, (dst, src),
63
	char *dst _AND
63
	char *__restrict dst _AND
64
	_CONST char *src)
64
	_CONST char *__restrict src)
65
{
65
{
66
#if !defined(PREFER_SIZE_OVER_SPEED) && !defined(__OPTIMIZE_SIZE__)
66
#if !defined(PREFER_SIZE_OVER_SPEED) && !defined(__OPTIMIZE_SIZE__)
67
  long *aligned_dst;
67
  long *aligned_dst;