#include <precomp.h>
Go to the source code of this file.
◆ _atoi64()
Definition at line 18 of file atoi64.c.
19{
20 char *
s = (
char *)nptr;
22 int neg = 0;
23
25 return 0;
26
30 {
31 neg = 1;
33 }
36
38 {
39 acc = 10 * acc + ((
int)*
s -
'0');
41 }
42
43 if (neg)
44 acc *= -1;
45 return acc;
46}
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *