|
@ -1,3 +1,5 @@ |
|
|
|
|
|
#ifndef STRING_MANIPULATION_H |
|
|
|
|
|
#define STRING_MANIPULATION_H |
|
|
#include <stdlib.h> |
|
|
#include <stdlib.h> |
|
|
#include <stdio.h> |
|
|
#include <stdio.h> |
|
|
#include <string.h> |
|
|
#include <string.h> |
|
@ -8,3 +10,4 @@ char *generateCheckString(unsigned int, char *); |
|
|
unsigned int toUnsignedInteger(char *); |
|
|
unsigned int toUnsignedInteger(char *); |
|
|
unsigned int power(unsigned int, unsigned int); |
|
|
unsigned int power(unsigned int, unsigned int); |
|
|
bool everyCharacterIsDigit(char *); |
|
|
bool everyCharacterIsDigit(char *); |
|
|
|
|
|
#endif |