Indentation avec tabulations

This commit is contained in:
Antoine Bartuccio 2017-05-15 11:22:53 +02:00
parent df2524f1fc
commit 5cef74481c
4 changed files with 163 additions and 159 deletions

6
main.c
View File

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