mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
9 lines
143 B
C
9 lines
143 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
|