1 2 3 4 5 6 7 8 9 10 11 12 13
| GList *list,
*iter;
gint index;
gchar *search_term = "Some string";
/* Initialize your list here */
for( index = 0, iter = list; iter; index++, iter = g_list_next( iter ) )
if( ! strcmp( iter->data, search_term ) )
break;
/* Index now holds your desired item index */
|