aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.c
blob: 614957301338865891a328139150157675f8dd38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <syscall.h>
#include <mlibc/stdio.h>
#include <mlibc/stdlib.h>

int32_t starts_with(const char *a, const char *b)
{
    size_t length_pre = strlen(b);
    size_t length_main = strlen(a);
    return length_main < length_pre ? 0 : memcmp(b, a, length_pre) == 0;
}

void user_main()
{
    char text[] = "> Successfully switched to usermode!\n";
    printf(text);

    while (1) {
        char *input = readline();
        if (starts_with(input, "ls")) {
            printf(text);
        }
    };
}