source: bootcd/isolinux/syslinux-6.03/com32/lib/strtox.c @ 26ffad7

Last change on this file since 26ffad7 was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 231 bytes
RevLine 
[e16e8f2]1/*
2 * strtox.c
3 *
4 * strto...() functions, by macro definition
5 */
6
7#include <stddef.h>
8#include <inttypes.h>
9
10TYPE NAME(const char *nptr, char **endptr, int base)
11{
12    return (TYPE) strntoumax(nptr, endptr, base, ~(size_t) 0);
13}
Note: See TracBrowser for help on using the repository browser.