]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blob - src/constants.h
tests/example_exec.c: Sort environment variables.
[coloredstderr/coloredstderr.git] / src / constants.h
1 /*
2  * Global constants and defines.
3  *
4  * Copyright (C) 2013  Simon Ruderich
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef CONSTANTS_H
21 #define CONSTANTS_H 1
22
23 /* Names of used environment variables. */
24 #define ENV_NAME_FDS         "COLORED_STDERR_FDS"
25 #define ENV_NAME_PRE_STRING  "COLORED_STDERR_PRE"
26 #define ENV_NAME_POST_STRING "COLORED_STDERR_POST"
27 #define ENV_NAME_FORCE_WRITE "COLORED_STDERR_FORCE_WRITE"
28 #define ENV_NAME_PRIVATE_FDS "COLORED_STDERR_PRIVATE_FDS"
29
30 /* Strings written before/after each matched function. */
31 #define DEFAULT_PRE_STRING  "\033[31m" /* red */
32 #define DEFAULT_POST_STRING "\033[0m"  /* default */
33
34 /* Number of elements to allocate statically. Highest descriptor observed in
35  * normal use was 255 (by bash), which yielded this limit to prevent
36  * unnecessary calls to malloc() whenever possible. */
37 #define TRACKFDS_STATIC_COUNT 256
38 /* Number of new elements to allocate per realloc(). */
39 #define TRACKFDS_REALLOC_STEP 10
40
41 #ifdef DEBUG
42 # define DEBUG_FILE "colored_stderr_debug_log.txt"
43 #endif
44 #ifdef WARNING
45 /* Created in the user's home directory, appends to existing file. */
46 # define WARNING_FILE "colored_stderr_warning_log.txt"
47 #endif
48
49 #endif