Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/misc.c

    r578e5b0 r73f0a01  
    427427}
    428428
    429 int is_bool(const char *value)
     429int is_bool(char *value)
    430430{
    431431        if (*value == 0) {
     
    453453}
    454454
    455 int bool2int(const char *value)
     455int bool2int(char *value)
    456456{
    457457        int i;
     
    751751        return end - string;
    752752}
     753
     754/* Parses a guint64 from string, returns TRUE on success */
     755gboolean parse_int64(char *string, int base, guint64 *number)
     756{
     757        guint64 parsed;
     758        char *endptr;
     759
     760        errno = 0;
     761        parsed = g_ascii_strtoull(string, &endptr, base);
     762        if (errno || endptr == string || *endptr != '\0') {
     763                return FALSE;
     764        }
     765        *number = parsed;
     766        return TRUE;
     767}
     768
Note: See TracChangeset for help on using the changeset viewer.