You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
554 B

  1. #ifndef STRING_MANIPULATION_H
  2. #define STRING_MANIPULATION_H
  3. #include <stdlib.h>
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <stdbool.h>
  7. #define UNITY_INCLUDE_CONFIG_H
  8. char *stringConcatenation(char *, char *);
  9. char *to_string(int);
  10. char *generateCheckString(unsigned int, char *);
  11. unsigned int toUnsignedInteger(char *);
  12. unsigned int power(unsigned int, unsigned int);
  13. bool everyCharacterIsDigit(char *);
  14. bool isLetterOfAlphabet(char *);
  15. double balanceToDouble(char *);
  16. unsigned int calculateStringLength(char *);
  17. bool charIsUpperCase(char );
  18. #endif