This repository has been archived on 2021-09-16. You can view files and clone it, but cannot push or open issues or pull requests.
msh/config.h

10 lines
163 B
C
Raw Normal View History

2021-09-13 23:46:17 +02:00
#ifndef MSH_CONFIG_H
#define MSH_CONFIG_H
#define DEF_HISTSIZE 512
#define DEF_HISTPATH ".history"
#define DEF_SHELLRC ".mshrc"
2021-09-14 19:00:19 +02:00
#define DEF_CHUNKSIZE 256
2021-09-13 23:46:17 +02:00
2021-09-14 19:00:19 +02:00
#endif