]> sigrok.org Git - libsigrok.git/commitdiff
strutil.c: Don't expose sr_atox() as API calls for now.
authorUwe Hermann <redacted>
Tue, 3 Dec 2013 16:16:59 +0000 (17:16 +0100)
committerUwe Hermann <redacted>
Tue, 3 Dec 2013 16:16:59 +0000 (17:16 +0100)
libsigrok-internal.h
proto.h
strutil.c

index 970c799fe69e4debafd2e6674e701bbbd401c3b9..e7a97aae668521d01878f2f2150b6339fe5f4eb8 100644 (file)
@@ -191,6 +191,13 @@ SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi,
 SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver,
                std_dev_clear_t clear_private);
 
+/*--- strutil.c -------------------------------------------------------------*/
+
+SR_PRIV int sr_atol(const char *str, long *ret);
+SR_PRIV int sr_atoi(const char *str, int *ret);
+SR_PRIV int sr_atod(const char *str, double *ret);
+SR_PRIV int sr_atof(const char *str, float *ret);
+
 /*--- hardware/common/serial.c ----------------------------------------------*/
 
 #ifdef HAVE_LIBSERIALPORT
diff --git a/proto.h b/proto.h
index 5b516eca113c69904b89ab57894e876363af6583..7ec6ae4f16905cdcfeb5fd25b1939d7ff32231d8 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -141,10 +141,6 @@ SR_API uint64_t sr_parse_timestring(const char *timestring);
 SR_API gboolean sr_parse_boolstring(const char *boolstring);
 SR_API int sr_parse_period(const char *periodstr, uint64_t *p, uint64_t *q);
 SR_API int sr_parse_voltage(const char *voltstr, uint64_t *p, uint64_t *q);
-SR_API int sr_atol(const char *str, long *ret);
-SR_API int sr_atoi(const char *str, int *ret);
-SR_API int sr_atod(const char *str, double *ret);
-SR_API int sr_atof(const char *str, float *ret);
 
 /*--- version.c -------------------------------------------------------------*/
 
index 6c6538446eb84e4090beb05dcf2402c77908ac42..f8644d72946feb578f5858265f1e017f9dfa529c 100644 (file)
--- 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;