1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2024-11-14 21:03:21 +00:00
fish/main.c

14 lines
226 B
C

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