cryptest

Cryptography-related scribbles
git clone git://git.finwo.net/misc/cryptest
Log | Files | Refs | README

atoui.c (192B)


      1 #ifdef __cplusplus
      2 extern "C" {
      3 #endif
      4 
      5 #include <stdlib.h>
      6 
      7 #include "base.h"
      8 
      9 unsigned int atoui( char *in ) {
     10   return strtoul( in, NULL, 10 );
     11 }
     12 
     13 #ifdef __cplusplus
     14 } // extern "C"
     15 #endif