]> jfr.im git - solanum.git/blobdiff - include/irc_string.h
myctime -> rb_ctime
[solanum.git] / include / irc_string.h
index 51ea0fd598cdd275eb6b306dfd1357bf92d61045..9c93edac9ebfc3cd692885f6f17569ac975257dc 100644 (file)
@@ -76,20 +76,6 @@ extern int ircncmp(const char *s1, const char *s2, int n);
 #ifdef NO_DUPE_MULTI_MESSAGES
 extern char *canonize(char *);
 #endif
-/*
- * inetntoa - optimized inet_ntoa
- */
-const char *inetntoa(const char *in_addr);
-
-/* 
- * inetntop() 
- * inetpton()
- * portable interfaces for inet_ntop() and inet_pton()
- */
-const char *inetntop(int af, const void *src, char *dst, unsigned int size);
-int inetpton(int af, const char *src, void *dst);
-const char *inetntop_sock(struct sockaddr *src, char *dst, unsigned int size);
-int inetpton_sock(const char *src, struct sockaddr *dst);
 
 /*
  * clean_string - cleanup control and high ascii characters
@@ -109,8 +95,6 @@ char *strip_colour(char *string);
  */
 char *strip_tabs(char *dest, const unsigned char *src, size_t len);
 
-const char *myctime(time_t);
-
 #define EmptyString(x) ((x) == NULL || *(x) == '\0')
 #define CheckEmpty(x) EmptyString(x) ? "" : x