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 7... Line 7...
7
INDEX
7
INDEX
8
	_strtoll_r
8
	_strtoll_r
Line 9... Line 9...
9
 
9
 
10
ANSI_SYNOPSIS
10
ANSI_SYNOPSIS
11
	#include 
11
	#include 
Line 12... Line 12...
12
        long long strtoll(const char *<[s]>, char **<[ptr]>,int <[base]>);
12
        long long strtoll(const char *restrict <[s]>, char **restrict <[ptr]>,int <[base]>);
13
 
13
 
Line 14... Line 14...
14
        long long _strtoll_r(void *<[reent]>, 
14
        long long _strtoll_r(void *<[reent]>, 
15
                       const char *<[s]>, char **<[ptr]>,int <[base]>);
15
                       const char *restrict <[s]>, char **restrict <[ptr]>,int <[base]>);
16
 
16
 
17
TRAD_SYNOPSIS
17
TRAD_SYNOPSIS
Line 126... Line 126...
126
 
126
 
Line 127... Line 127...
127
#ifndef _REENT_ONLY
127
#ifndef _REENT_ONLY
128
 
128
 
129
long long
129
long long
130
_DEFUN (strtoll, (s, ptr, base),
130
_DEFUN (strtoll, (s, ptr, base),
131
	_CONST char *s _AND
131
	_CONST char *__restrict s _AND
132
	char **ptr _AND
132
	char **__restrict ptr _AND
133
	int base)
133
	int base)
134
{
134
{