1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* * 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_ */