aboutsummaryrefslogtreecommitdiffstats
path: root/epan/to_str.h
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2021-09-16 16:04:11 +0100
committerJoão Valverde <j@v6e.pt>2021-09-16 20:55:03 +0100
commit8c4a479c52c7c4abdef7eb82fd0c2d704cd14c0e (patch)
tree0990798dfe9182bbecc5a020871a93ce837b4349 /epan/to_str.h
parentcc1e5b83349d837fe442883842170230fc7a400c (diff)
Move more numerical functions to wsutil/to_str.h
Diffstat (limited to 'epan/to_str.h')
-rw-r--r--epan/to_str.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/epan/to_str.h b/epan/to_str.h
index 7adf29a329..40a7ccab99 100644
--- a/epan/to_str.h
+++ b/epan/to_str.h
@@ -39,14 +39,6 @@ extern "C" {
*/
/*
- ************** Numerical
- */
-
-WS_DLL_PUBLIC void guint32_to_str_buf(guint32 u, gchar *buf, int buf_len);
-
-WS_DLL_PUBLIC void guint64_to_str_buf(guint64 u, gchar *buf, int buf_len);
-
-/*
************** Address
*/
@@ -82,18 +74,6 @@ WS_DLL_PUBLIC gchar *address_to_display(wmem_allocator_t *allocator, const addre
WS_DLL_PUBLIC void address_to_str_buf(const address *addr, gchar *buf, int buf_len);
-WS_DLL_LOCAL void ip_to_str_buf(const guint8 *ad, gchar *buf, const int buf_len);
-
-/* Returns length of the result. */
-WS_DLL_LOCAL int ip6_to_str_buf(const ws_in6_addr *ad, gchar *buf, int buf_size);
-
-/* Returns length of the result. Takes a prefix to be inserted before the address. */
-WS_DLL_LOCAL int ip6_to_str_buf_with_pfx(const ws_in6_addr *ad, gchar *buf, int buf_size, const char *prefix);
-
-WS_DLL_LOCAL gchar *ipxnet_to_str_punct(wmem_allocator_t *scope, const guint32 ad, const char punct);
-
-WS_DLL_PUBLIC gchar *eui64_to_str(wmem_allocator_t *scope, const guint64 ad);
-
WS_DLL_PUBLIC const gchar *port_type_to_str (port_type type);
/*