return str_to_int(s, base, (int *) u);
}
-bool str_to_ulong(const char *s, int base, unsigned long *ul)
+bool
+str_to_ulong(const char *s, int base, unsigned long *ul)
{
return str_to_long(s, base, (long *) ul);
}
-bool str_to_ullong(const char *s, int base, unsigned long long *ull)
+bool
+str_to_ullong(const char *s, int base, unsigned long long *ull)
{
return str_to_llong(s, base, (long long *) ull);
}