/* * conversion.h * * Created on: 13.01.2018 * Author: Superleo1810 * * This file contains conversion macros from gtk to corresponding std-c datatypes */ #ifndef CONVERSION_H_ #define CONVERSION_H_ // (gchar *) to (char *) #define CHAR_PTR(x) (x) #endif /* CONVERSION_H_ */