X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgregex.h;h=eff6d608e43124143c4420758f761922fc10d865;hb=13e15733f38a40c6ef6a1baede91cce81c86ebaa;hp=77d9d041e584f99175fd5bca1e25c62516fd245a;hpb=6fbb1463429748bed7ab6593779430ee1c0664f5;p=platform%2Fupstream%2Fglib.git diff --git a/glib/gregex.h b/glib/gregex.h index 77d9d04..eff6d60 100644 --- a/glib/gregex.h +++ b/glib/gregex.h @@ -292,7 +292,8 @@ GQuark g_regex_error_quark (void); * Since: 2.14 */ /* Remember to update G_REGEX_COMPILE_MASK in gregex.c after - * adding a new flag. */ + * adding a new flag. + */ typedef enum { G_REGEX_CASELESS = 1 << 0, @@ -405,14 +406,20 @@ typedef enum /** * GRegex: * - * A GRegex is the "compiled" form of a regular expression pattern. This - * structure is opaque and its fields cannot be accessed directly. + * A GRegex is the "compiled" form of a regular expression pattern. + * This structure is opaque and its fields cannot be accessed directly. * * Since: 2.14 */ typedef struct _GRegex GRegex; +/** + * GMatchInfo: + * + * A GMatchInfo is an opaque struct used to return information about + * matches. + */ typedef struct _GMatchInfo GMatchInfo; /**