すべてのコメントブロック(/ * ... * /)を検索したいのですが、関数g_regex_match_fullは常にtrueを返します。コードは次のとおりです。
// Create the regex.
start_block_comment_regex = g_regex_new("/\*.*\*/", G_REGEX_OPTIMIZE, 0, ®ex_error);
//Search the regex;
if(TRUE == g_regex_match_full(start_block_comment_regex, current_line, -1, 0, 0, &match_info, ®ex_error))
{
}