blob: db07c64576dd7546862a7c0929ac63441e2e6288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright (c) 2024 Freya Murphy */
#ifndef __MLIMITS_H__
#define __MLIMITS_H__
/* Specifies how long a stirng extension in a
* shdr entry name can be.
*/
#ifndef MAX_EXT_LENGTH
#define MAX_EXT_LENGTH 48
#endif
/* Specifices how many max arguments a
* given directive can hold
*/
#ifndef MAX_ARG_LENGTH
#define MAX_ARG_LENGTH 12
#endif
#endif /* __MLIMITS_H__ */
|