ArgPar-C v1.0.0-build
Simple and powerful Argument Parser for C
Loading...
Searching...
No Matches
APC_config.h File Reference

Go to the source code of this file.

Macros

#define __APC_CPP_GUARD_CLOSE   }
#define __APC_CPP_GUARD_OPEN   extern "C" {
#define APC_Declare_Pair(_first, _second, _name)
#define APC_STYLE_BOLD   "\033[1m"
#define APC_STYLE_ITALIC   "\033[3m"
#define APC_STYLE_RESET   "\033[0m"
#define APC_STYLE_STRIKETRHOUGH   "\033[9m"
#define APC_STYLE_UNDERLINE   "\033[4m"
#define APC_STYLECOLOR_IMPORTANT   "${255,71,76}"
#define APC_STYLECOLOR_OPTIONAL   "${150,150,150}"
#define APC_STYLECOLOR_TITLE   "${245,245,245}"
#define APC_STYLECOLOR_WARNING   "${255,255,40}"

Macro Definition Documentation

◆ __APC_CPP_GUARD_CLOSE

#define __APC_CPP_GUARD_CLOSE   }

Definition at line 6 of file APC_config.h.

◆ __APC_CPP_GUARD_OPEN

#define __APC_CPP_GUARD_OPEN   extern "C" {

Definition at line 5 of file APC_config.h.

◆ APC_Declare_Pair

#define APC_Declare_Pair ( _first,
_second,
_name )
Value:
typedef struct APC_Pair##_name \
{ \
_first first; \
_second second; \
} APC_Pair##_name; \

Definition at line 25 of file APC_config.h.

25#define APC_Declare_Pair(_first, _second, _name) \
26 typedef struct APC_Pair##_name \
27 { \
28 _first first; \
29 _second second; \
30 } APC_Pair##_name; \
31

◆ APC_STYLE_BOLD

#define APC_STYLE_BOLD   "\033[1m"

Definition at line 15 of file APC_config.h.

Referenced by __apc_colorFormat().

◆ APC_STYLE_ITALIC

#define APC_STYLE_ITALIC   "\033[3m"

Definition at line 16 of file APC_config.h.

Referenced by __apc_colorFormat().

◆ APC_STYLE_RESET

#define APC_STYLE_RESET   "\033[0m"

Definition at line 14 of file APC_config.h.

Referenced by __apc_colorFormat().

◆ APC_STYLE_STRIKETRHOUGH

#define APC_STYLE_STRIKETRHOUGH   "\033[9m"

Definition at line 18 of file APC_config.h.

◆ APC_STYLE_UNDERLINE

#define APC_STYLE_UNDERLINE   "\033[4m"

Definition at line 17 of file APC_config.h.

Referenced by __apc_colorFormat().

◆ APC_STYLECOLOR_IMPORTANT

#define APC_STYLECOLOR_IMPORTANT   "${255,71,76}"

Definition at line 22 of file APC_config.h.

◆ APC_STYLECOLOR_OPTIONAL

#define APC_STYLECOLOR_OPTIONAL   "${150,150,150}"

Definition at line 21 of file APC_config.h.

Referenced by apc_generateHelp().

◆ APC_STYLECOLOR_TITLE

#define APC_STYLECOLOR_TITLE   "${245,245,245}"

Definition at line 20 of file APC_config.h.

Referenced by apc_generateHelp().

◆ APC_STYLECOLOR_WARNING

#define APC_STYLECOLOR_WARNING   "${255,255,40}"

Definition at line 23 of file APC_config.h.