1 /* atou.h: like atoi, but if the number is negative, abort. */
2 
3 #ifndef ATOU_H
4 #define ATOU_H
5 
6 #include "types.h"
7 unsigned atou (at_string s);
8 
9 #endif /* not ATOU_H */
10