source:
bootcd/isolinux/syslinux-6.03/com32/lib/strntoimax.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 220 bytes |
Rev | Line | |
---|---|---|
[e16e8f2] | 1 | /* |
2 | * strntoimax.c | |
3 | * | |
4 | * strntoimax() | |
5 | */ | |
6 | ||
7 | #include <stddef.h> | |
8 | #include <inttypes.h> | |
9 | ||
10 | intmax_t strntoimax(const char *nptr, char **endptr, int base, size_t n) | |
11 | { | |
12 | return (intmax_t) strntoumax(nptr, endptr, base, n); | |
13 | } |
Note: See TracBrowser
for help on using the repository browser.