Files
banan-os/userspace/programs/Shell/Lexer.h
Bananymous 8adc97980a Shell: rewrite the whole shell to use tokens instead of raw strings
tab completion is still running with raw strings and that has to be
fixed in the future.
2024-10-13 22:00:16 +03:00

6 lines
101 B
C

#pragma once
#include "Token.h"
BAN::ErrorOr<BAN::Vector<Token>> tokenize_string(BAN::StringView);