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

/* Entry function */
int main() {

    /* 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);
}