mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
60f2d8d3c0
- isspace & toupper needs an unsigned char as arg - collision with compiler namespace __X - resolved some typos Signed-off-by: Patrick Winnertz <winnie@debian.org>
9 lines
139 B
C
9 lines
139 B
C
#ifndef MHL_ENV_H
|
|
#define MHL_ENV_H
|
|
|
|
#include <mhl/string.h>
|
|
|
|
#define mhl_getenv_dup(name) (mhl_str_dup(name ? getenv(name) : ""))
|
|
|
|
#endif
|