mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 21:03:21 +00:00
24 lines
371 B
C
24 lines
371 B
C
//
|
|
// Created by Antoine Bartuccio on 11/05/2017.
|
|
//
|
|
|
|
#ifndef FISH_FISH_LIB_H
|
|
#define FISH_FISH_LIB_H
|
|
|
|
typedef struct {
|
|
char * word;
|
|
size_t size;
|
|
} Word;
|
|
|
|
void fishLoop();
|
|
|
|
char * fishReadLine();
|
|
|
|
Word * split(char *string, char *separator);
|
|
|
|
int countSeparator(char *string, char separator);
|
|
|
|
void freeWordArray(Word *array, int size);
|
|
|
|
#endif //FISH_FISH_LIB_H
|