]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blob - src/constants.h
Add ENV_NAME_FORCE_WRITE to force writes to non-tty devices.
[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
29 /* Strings written before/after each matched function. */
30 #define DEFAULT_PRE_STRING "\e[91m"
31 #define DEFAULT_POST_STRING "\e[0m"
32
33 /* Number of new elements to allocate per realloc(). */
34 #define TRACKFDS_REALLOC_STEP 10
35
36 #ifdef DEBUG
37 # define DEBUG_FILE "colored_stderr_debug_log.txt"
38 #endif
39
40 #endif