mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
21 lines
487 B
C
21 lines
487 B
C
#ifndef PSYC_SYNTAX_H
|
|
|
|
#ifndef PSYC_LIST_SIZE_LIMIT
|
|
# define PSYC_LIST_SIZE_LIMIT 404
|
|
#endif
|
|
|
|
/* beyond this a content length must be provided */
|
|
#ifndef PSYC_CONTENT_SIZE_THRESHOLD
|
|
# define PSYC_CONTENT_SIZE_THRESHOLD 444
|
|
#endif
|
|
|
|
/* beyond this a modifier value length must be provided */
|
|
#ifndef PSYC_MODIFIER_SIZE_THRESHOLD
|
|
# define PSYC_MODIFIER_SIZE_THRESHOLD 404
|
|
#endif
|
|
|
|
#define PSYC_PACKET_DELIMITER_CHAR '|'
|
|
#define PSYC_PACKET_DELIMITER "\n|\n"
|
|
|
|
#define PSYC_SYNTAX_H
|
|
#endif
|