source: bootcd/isolinux/syslinux-6.03/dos/atou.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: 149 bytes
Line 
1#include "mystuff.h"
2
3unsigned int atou(const char *s)
4{
5    unsigned int i = 0;
6    while (isdigit(*s))
7        i = i * 10 + (*s++ - '0');
8    return i;
9}
Note: See TracBrowser for help on using the repository browser.