2017-05-15 12:08:10 +00:00
|
|
|
//
|
|
|
|
// Created by Antoine Bartuccio on 15/05/2017.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef FISH_FISH_UTILS_H
|
|
|
|
#define FISH_FISH_UTILS_H
|
|
|
|
|
2017-05-15 13:02:58 +00:00
|
|
|
#include "fish_types.h"
|
|
|
|
|
2017-05-16 00:58:16 +00:00
|
|
|
void crash(); // Tested
|
2017-05-15 12:08:10 +00:00
|
|
|
|
2017-05-16 00:58:16 +00:00
|
|
|
char *getInsult(); // Tested
|
2017-05-15 13:52:48 +00:00
|
|
|
|
2017-05-16 00:58:16 +00:00
|
|
|
void freeWordArray(WordArray *array); // Tested
|
2017-05-15 13:02:58 +00:00
|
|
|
|
2017-05-16 00:58:16 +00:00
|
|
|
WordList * createWordList(); // Tested
|
2017-05-15 13:02:58 +00:00
|
|
|
|
2017-05-16 17:15:51 +00:00
|
|
|
WordList * sliceWordList(WordList *list, int min_index, int max_index);
|
|
|
|
|
2017-05-20 14:25:00 +00:00
|
|
|
void addEndWordList(WordList *list, char *word); // Tested
|
|
|
|
|
|
|
|
void addBeginWordList(WordList *list, char *word);
|
2017-05-15 13:02:58 +00:00
|
|
|
|
2017-05-16 00:58:16 +00:00
|
|
|
void removeWordList(WordList *list); // Tested
|
2017-05-15 13:02:58 +00:00
|
|
|
|
2017-05-16 17:15:51 +00:00
|
|
|
void removeWordListElem(WordList *list, WordListElement *elem);
|
|
|
|
|
2017-05-16 00:58:16 +00:00
|
|
|
void freeWordList(WordList *list); // Tested
|
2017-05-15 13:02:58 +00:00
|
|
|
|
2017-05-16 00:58:16 +00:00
|
|
|
WordArray * wordListToWordArray(WordList *list); // Tested
|
2017-05-15 13:02:58 +00:00
|
|
|
|
2017-05-16 00:58:16 +00:00
|
|
|
WordList * wordArrayToWordList(WordArray * array); // Tested
|
2017-05-15 13:02:58 +00:00
|
|
|
|
2017-05-20 14:25:00 +00:00
|
|
|
WordList * splitWordList(WordList *list, char *regex);
|
|
|
|
|
|
|
|
char * splitWord(char * origin, int beginning_index, int size_to_delete); // Tested
|
2017-05-16 17:15:51 +00:00
|
|
|
|
2017-05-27 15:36:55 +00:00
|
|
|
void concatWordList(WordList* list1, WordList* list2);
|
2017-05-15 17:10:46 +00:00
|
|
|
|
2017-05-28 15:25:04 +00:00
|
|
|
void printWordList(WordList* list);
|
2017-05-16 05:32:19 +00:00
|
|
|
|
2017-05-16 05:32:19 +00:00
|
|
|
int stringContains(char* string, char charToTest);
|
|
|
|
|
2017-05-29 15:25:31 +00:00
|
|
|
char* trueStrcat(char* string1, char* string2);
|
|
|
|
|
2017-06-07 15:58:44 +00:00
|
|
|
int isDirectory(char* path);
|
|
|
|
|
2017-05-28 15:25:04 +00:00
|
|
|
|
2017-05-15 12:08:10 +00:00
|
|
|
#endif //FISH_FISH_UTILS_H
|