aboutsummaryrefslogblamecommitdiff
path: root/banner.c
blob: ae239042b5a5f061e3311edad3226b9ac9c07a6b (plain) (tree)
1
2
3
4
5
6
7
8
                 






                                           
#include "spsh.h"

/* Print the welcome and warning banners */
void banner() {
    fprintf(stdout, "%s\n", WELCOME);
    fprintf(stdout, "%s\n", WARNING);
    return;
}