X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=strutil.c;h=f8644d72946feb578f5858265f1e017f9dfa529c;hb=7faa3e8821735e063e17fcad326c68aae14fe907;hp=6c6538446eb84e4090beb05dcf2402c77908ac42;hpb=9e4f8cf93b465fb34b35b083935f45ba5427045e;p=libsigrok.git diff --git a/strutil.c b/strutil.c index 6c653844..f8644d72 100644 --- a/strutil.c +++ b/strutil.c @@ -61,7 +61,7 @@ * * @since 0.3.0 */ -SR_API int sr_atol(const char *str, long *ret) +SR_PRIV int sr_atol(const char *str, long *ret) { long tmp; char *endptr = NULL; @@ -92,7 +92,7 @@ SR_API int sr_atol(const char *str, long *ret) * * @since 0.3.0 */ -SR_API int sr_atoi(const char *str, int *ret) +SR_PRIV int sr_atoi(const char *str, int *ret) { long tmp; @@ -121,7 +121,7 @@ SR_API int sr_atoi(const char *str, int *ret) * * @since 0.3.0 */ -SR_API int sr_atod(const char *str, double *ret) +SR_PRIV int sr_atod(const char *str, double *ret) { double tmp; char *endptr = NULL; @@ -152,7 +152,7 @@ SR_API int sr_atod(const char *str, double *ret) * * @since 0.3.0 */ -SR_API int sr_atof(const char *str, float *ret) +SR_PRIV int sr_atof(const char *str, float *ret) { double tmp;