mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 04:43:20 +00:00
16 lines
360 B
C
16 lines
360 B
C
#ifndef FISH_FISH_SETTINGS_H
|
|
#define FISH_FISH_SETTINGS_H
|
|
|
|
#include "fish_core.h"
|
|
|
|
#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
|
|
void printPS(char* PS, Settings* s);
|
|
|
|
#endif //FISH_FISH_SETTINGS_H
|
|
|