mc/mhl/mhlenv.h
Patrick Winnertz 5f1140f894 Renamed all mhl files as some of them are also present under /usr/include
with the same name:
 - memory.h
 - string.h
In order to do not have two .h files with the same name these two needs to be renamed.
I've renamed the others too, in order to have the same naming rules here.

Updated README to reflect this change
2009-01-16 11:50:10 +01:00

7 lines
118 B
C

#ifndef __MHL_ENV_H
#define __MHL_ENV_H
#define mhl_getenv_dup(name) (mhl_str_dup(name ? getenv(name) : ""))
#endif