fish/fish_shell/main.c

13 lines
197 B
C
Raw Normal View History

2017-05-11 15:16:06 +00:00
#include <stdlib.h>
2017-05-15 22:08:07 +00:00
#include "fish_core.h"
#include "fish_types.h"
2017-05-09 14:04:24 +00:00
int main() {
2017-05-15 09:22:53 +00:00
/* todo load config file */
Settings *s = getSettings();
fishLoop(s);
2017-05-15 10:32:00 +00:00
freeSettings(s);
2017-05-11 15:16:06 +00:00
2017-05-15 09:22:53 +00:00
return EXIT_SUCCESS;
}