blob: a1a6f87817865ba35546e3087bc4f36148698e33 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef __GTKINTL_H__
#define __GTKINTL_H__
#include <glib/gi18n-lib.h>
/* not really I18N-related, but also a string marker macro */
#define I_(string) g_intern_static_string (string)
#endif
|