1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2024-09-28 22:08:13 +00:00
fish/fish_shell/fish_settings.h

16 lines
360 B
C
Raw Normal View History

2017-05-29 17:42:02 +00:00
#ifndef FISH_FISH_SETTINGS_H
#define FISH_FISH_SETTINGS_H
2017-05-29 14:19:42 +00:00
#include "fish_core.h"
2017-05-29 17:42:02 +00:00
#define FISH_RC_FILE "/.fishrc"
#define FISH_RC_FILE_SIZE 8
Settings * getSettings(); //TESTEDssssss
void freeSettings(Settings *settings); //TESTED
char* extractVariable(char* filename, char* var);//TESTED
2017-06-12 11:29:19 +00:00
void printPS(char* PS, Settings* s);
2017-05-29 17:42:02 +00:00
2017-05-29 17:09:19 +00:00
#endif //FISH_FISH_SETTINGS_H