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

/* Entry function */
int main(int argc, char *argv[]) {

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