Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
ccfb1eb0
Commit
ccfb1eb0
authored
8 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: rearrange a function in my style, and rename a variable
parent
7e3a9c3a
master
feature/match-parens
refactor/readbility
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/utils.c
+13
-17
src/utils.c
with
13 additions
and
17 deletions
+13
-17
src/utils.c
View file @
ccfb1eb0
...
...
@@ -81,28 +81,24 @@ bool parse_num(const char *str, ssize_t *val)
* *line and *column. Return FALSE on error, and TRUE otherwise. */
bool
parse_line_column
(
const
char
*
str
,
ssize_t
*
line
,
ssize_t
*
column
)
{
bool
retval
=
TRUE
;
const
char
*
comma
;
assert
(
str
!=
NULL
);
bool
retval
;
char
*
firstpart
;
const
char
*
comma
=
strchr
(
str
,
','
);
comma
=
strchr
(
str
,
','
);
if
(
comma
==
NULL
)
return
parse_num
(
str
,
line
);
if
(
comma
!=
NULL
)
{
if
(
!
parse_num
(
comma
+
1
,
column
))
return
FALSE
;
}
if
(
!
parse_num
(
comma
+
1
,
column
))
return
FALSE
;
if
(
comma
!=
NULL
)
{
char
*
str_line
=
mallocstrncpy
(
NULL
,
str
,
comma
-
str
+
1
);
str_line
[
comma
-
str
]
=
'\0'
;
if
(
comma
==
str
)
return
TRUE
;
if
(
str_line
[
0
]
!=
'\0'
&&
!
parse_num
(
str_line
,
line
))
retval
=
FALSE
;
firstpart
=
strdup
(
str
);
firstpart
[
comma
-
str
]
=
'\0'
;
free
(
str_line
);
}
else
return
parse_num
(
str
,
line
);
retval
=
parse_num
(
firstpart
,
line
);
free
(
firstpart
);
return
retval
;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help