aboutsummaryrefslogtreecommitdiff
path: root/banner.c
blob: 57daceb21a1d159463fca378ea82a0c2e74ed4bb (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "spsh.h"

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