aboutsummaryrefslogtreecommitdiff
path: root/main.c
blob: d50ca461fb3729a42835348696d6c1e7bd40a98f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "spsh.h"

/* Entry function */
int main(void) {

    /* Show the banner with the warning */
    banner();

    /* Start looping through commands */
    loop();

    /* If we get to this point, things should be good */
    exit(EXIT_SUCCESS);
}