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