tiny-shell 0.2
A mini shell project aiming to gain knowledge about Win32 and Linux API
Loading...
Searching...
No Matches
config.h
Go to the documentation of this file.
1#pragma once
2
3#define APP_VERSION "0.2"
4#define APP_NAME "tiny-shell"
5#define INPUT_BUFFER_SIZE 256
6#define CWD_BUFFER_SIZE 256
7#define ENVS_RESERVE_SIZE 2048
8#define ENV_VAR_BUFFER_SIZE 8192
9#define MAX_ARGC 128
10#define PATH_MAX 32767
11#define TIME_DATE_BUFFER_SIZE 100