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 строки
139 B
C
9 строки
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
|