blob: 021bfe8c1c49a1f0c3f9a9c7fe7f3a4ece6aa9c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef STR_LENGTH_H
# define STR_LENGTH_H
# include "main.h"
# define STR_SIZE 128
# define STR_PROTO_SIZE 128
# define STR_LOG_SIZE 256
# define STR_NUM_SIZE 8
# define STR_NAME_SIZE 32
# define STR_PATH_SIZE 4096
# define STR_FILE_NAME_SIZE 256
# define STR_IP_SIZE 64
#endif
|