MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / uppers_and_unders

Function uppers_and_unders

gtk/src/hb-backend.c:2320–2338  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2318}
2319
2320static gboolean
2321uppers_and_unders(gchar *str)
2322{
2323 if (str == NULL) return FALSE;
2324 str = g_strchomp(g_strchug(str));
2325 while (*str)
2326 {
2327 if (*str == ' ')
2328 {
2329 return FALSE;
2330 }
2331 if (*str >= 'a' && *str <= 'z')
2332 {
2333 return FALSE;
2334 }
2335 str++;
2336 }
2337 return TRUE;
2338}
2339
2340enum
2341{

Callers 1

ghb_create_volume_labelFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected