mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 04:43:20 +00:00
13 lines
219 B
C
13 lines
219 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);
|
|
freeSettings(s);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|