90s/constants.h

10 lines
318 B
C
Raw Normal View History

2024-01-31 02:02:32 +01:00
#ifndef CONSTANTS_H_
#define CONSTANTS_H_
#define HISTFILE ".rush_history" // history file name
#define TOK_BUFSIZE 64 // buffer size of each token
#define RL_BUFSIZE 1024 // size of each command
2024-01-31 02:02:32 +01:00
#define TOK_DELIM " \t\r\n\a" // delimiter for token
#define MAX_HISTORY 8192 // maximum lines of reading history
2024-01-31 02:02:32 +01:00
#endif