mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Mark str2int as static
This commit is contained in:
parent
639d3b1438
commit
7ce70739b5
1 changed files with 1 additions and 1 deletions
|
@ -2105,7 +2105,7 @@ Convert string s to int out.
|
|||
|
||||
@return Indicates if the operation succeeded, or why it failed.
|
||||
*/
|
||||
str2int_errno str2int(int *out, char *s, int base)
|
||||
static str2int_errno str2int(int *out, char *s, int base)
|
||||
{
|
||||
char *end;
|
||||
if (s[0] == '\0' || isspace((unsigned char) s[0]))
|
||||
|
|
Loading…
Add table
Reference in a new issue