Subversion Repositories Kolibri OS

Rev

Rev 4874 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 4921
Line 34... Line 34...
34
 
34
 
Line 35... Line 35...
35
#ifndef _REENT_ONLY
35
#ifndef _REENT_ONLY
36
 
36
 
37
int
37
int
38
_DEFUN(vsscanf, (str, fmt, ap), 
38
_DEFUN(vsscanf, (str, fmt, ap), 
39
       _CONST char *str _AND 
39
       _CONST char *__restrict str _AND 
40
       _CONST char *fmt _AND 
40
       _CONST char *__restrict fmt _AND 
41
       va_list ap)
41
       va_list ap)
42
{
42
{
Line 43... Line 43...
43
  return _vsscanf_r (_REENT, str, fmt, ap);
43
  return _vsscanf_r (_REENT, str, fmt, ap);
Line 44... Line 44...
44
}
44
}
45
 
45
 
46
#endif /* !_REENT_ONLY */
46
#endif /* !_REENT_ONLY */
47
 
47
 
48
int
48
int
49
_DEFUN(_vsscanf_r, (ptr, str, fmt, ap),
49
_DEFUN(_vsscanf_r, (ptr, str, fmt, ap),
50
       struct _reent *ptr _AND 
50
       struct _reent *ptr _AND 
51
       _CONST char *str   _AND 
51
       _CONST char *__restrict str   _AND 
Line 52... Line 52...
52
       _CONST char *fmt   _AND 
52
       _CONST char *__restrict fmt   _AND