diff --git a/src/utils.c b/src/utils.c index de7b43d37aebe26f7f7191db01c7b6e36e274aa2..e5adf844072aa575c44be5eb7781ec8f80eff6da 100644 --- a/src/utils.c +++ b/src/utils.c @@ -105,6 +105,8 @@ bool parse_num(const char *str, ssize_t *val) return TRUE; } +/* Read an int and a ssize_t, separated by a comma, from str, and store + * them in *line and *column (if they're not both NULL). */ void parse_line_column(const char *str, int *line, ssize_t *column) { char *comma;