mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-22 08:43:20 +00:00
Indentation avec tabulations
This commit is contained in:
parent
df2524f1fc
commit
5cef74481c
6
main.c
6
main.c
@ -1,9 +1,13 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "fish_shell/fish_core.h"
|
#include "fish_shell/fish_core.h"
|
||||||
|
#include "fish_shell/fish_types.h"
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
/* todo load config file */
|
/* todo load config file */
|
||||||
fishLoop(getSettings());
|
Settings *s = getSettings();
|
||||||
|
fishLoop(s);
|
||||||
|
free(s->PS1);
|
||||||
|
free(s);
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user