/* 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__ */