mc/mhl/env.h

9 lines
143 B
C
Raw Normal View History

#ifndef __MHL_ENV_H
#define __MHL_ENV_H
2009-01-19 04:31:04 +03:00
#include <mhl/string.h>
#define mhl_getenv_dup(name) (mhl_str_dup(name ? getenv(name) : ""))
#endif