]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/portab/strtok_r.c
Debian: require "telnet" or "telnet-ssl" for building
[ngircd-alex.git] / src / portab / strtok_r.c
index 852c8f705548d557785dc68a86bb0378e3d4e1d4..4d00772f202a7d10963f596c2f99ca6aaf224ad1 100644 (file)
@@ -1,8 +1,18 @@
+/*
+ * ngIRCd -- The Next Generation IRC Daemon
+ */
+
 #include "portab.h"
-#include <string.h>
+
+/**
+ * @file
+ * Implementation of strtok_r()
+ */
 
 #ifndef HAVE_STRTOK_R
 
+#include <string.h>
+
 char *
 strtok_r(char *str, const char *delim, char **saveptr)
 {
@@ -24,4 +34,3 @@ strtok_r(char *str, const char *delim, char **saveptr)
 }
 
 #endif
-