1
1
Этот коммит содержится в:
Enrico Weigelt, metux IT service 2009-02-04 01:09:19 +01:00
родитель f2a745a47d 1d8ef0b089
Коммит 18e9e770c2
3 изменённых файлов: 5 добавлений и 8 удалений

Просмотреть файл

@ -1,3 +1,7 @@
2009-02-04 Enrico Weigelt, metux ITS <weigelt@metux.de>
* mhl/types.h, mhl/escape.h: replaced bool type by stdbool.h (fixing #240)
2009-02-03 Enrico Weigelt, metux ITS <weigelt@metux.de>
* lib/mc.lib: added patch on #219 by angel_il

Просмотреть файл

@ -5,8 +5,7 @@
#include <string.h>
#include <stdlib.h>
#include <mhl/types.h>
#include <stdbool.h>
#define mhl_shell_escape_toesc(x) \
(((x)==' ')||((x)=='!')||((x)=='#')||((x)=='$')||((x)=='%')|| \

Просмотреть файл

@ -7,10 +7,4 @@
#ifndef __MHL_TYPES_H
#define __MHL_TYPES_H
typedef enum
{
false = 0,
true = 1
} bool;
#endif