1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2024-06-01 20:39:44 +00:00
fish/fish_shell/main.c

13 lines
197 B
C

#include <stdlib.h>
#include "fish_core.h"
#include "fish_types.h"
int main() {
/* todo load config file */
Settings *s = getSettings();
fishLoop(s);
freeSettings(s);
return EXIT_SUCCESS;
}