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;
}