WKern
|
#include <utils/util.h>
Go to the source code of this file.
Functions | |
int | Katoi (const char *str) |
Converts ASCII - Integer. | |
int | Katoi_auto (const char *str) |
Safely convert ASCII To Integer. | |
void | Kitoa (unsigned int num, char *buf) |
Convert Integer to ASCII Text. |
int Katoi | ( | const char * | str | ) |
Converts ASCII - Integer.
str | - ASCII Text |
Definition at line 23 of file numtools.c.
int Katoi_auto | ( | const char * | str | ) |
Safely convert ASCII To Integer.
str | - ASCII Text |
Definition at line 47 of file numtools.c.
void Kitoa | ( | unsigned int | num, |
char * | buf ) |
Convert Integer to ASCII Text.
num | - Number to convert to ASCII Text |
buf | - Buffer which ASCII Text will be stored at |
Definition at line 73 of file numtools.c.