tiny-shell 0.2
A mini shell project aiming to gain knowledge about Win32 and Linux API
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdbool.h>
4
5bool is_number(const char *c);
6
7bool support_color();
bool support_color()
Definition utils.c:58
bool is_number(const char *c)
Definition utils.c:8