added gnutls backend and moved backend code into new files
[ircu2.10.12-pk.git] / include / s_numeric.h
index 0c148b312a5d9b2661c1aa69cd748e5ef2a15f73..6a9c1de409f4c7c34e11cf4e8880528d2f13c83a 100644 (file)
@@ -1,11 +1,17 @@
-#ifndef S_NUMERIC_H
-#define S_NUMERIC_H
+/** @file s_numeric.h
+ * @brief Send a numeric message to a client.
+ * @version $Id$
+ */
+#ifndef INCLUDED_s_numeric_h
+#define INCLUDED_s_numeric_h
+
+struct Client;
 
-/*=============================================================================
- * Proto types
+/*
+ * Prototypes
  */
 
-extern int do_numeric(int numeric, int nnn, aClient *cptr, aClient *sptr,
+extern int do_numeric(int numeric, int nnn, struct Client *cptr, struct Client *sptr,
     int parc, char *parv[]);
 
-#endif /* S_NUMERIC_H */
+#endif /* INCLUDED_s_numeric_h */