summary refs log tree commit diff
path: root/src/ipaddr
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2010-12-27 17:14:14 +0100
committerAlexander Barton <alex@barton.de>2011-02-13 17:52:38 +0100
commit03628dbeaf40a9de34b3eb6d5bf6dd34eed8248c (patch)
tree1f6d99b8ecbfaa2775737928109d6344dc133359 /src/ipaddr
parent408cefd15d4540d340283cdfbfad62a8e432cf8e (diff)
downloadngircd-03628dbeaf40a9de34b3eb6d5bf6dd34eed8248c.tar.gz
ngircd-03628dbeaf40a9de34b3eb6d5bf6dd34eed8248c.zip
Add Doxygen @file documentation to each source and header file
Diffstat (limited to 'src/ipaddr')
-rw-r--r--src/ipaddr/ng_ipaddr.c7
-rw-r--r--src/ipaddr/ng_ipaddr.h7
2 files changed, 10 insertions, 4 deletions
diff --git a/src/ipaddr/ng_ipaddr.c b/src/ipaddr/ng_ipaddr.c
index af524d09..a47a40d2 100644
--- a/src/ipaddr/ng_ipaddr.c
+++ b/src/ipaddr/ng_ipaddr.c
@@ -1,11 +1,14 @@
 /*
- * Functions for AF_ agnostic ipv4/ipv6 handling.
- *
  * (c) 2008 Florian Westphal <fw@strlen.de>, public domain.
  */
 
 #include "portab.h"
 
+/**
+ * @file
+ * Functions for AF_ agnostic ipv4/ipv6 handling.
+ */
+
 #include <assert.h>
 #include <stdio.h>
 #include <string.h>
diff --git a/src/ipaddr/ng_ipaddr.h b/src/ipaddr/ng_ipaddr.h
index 54a97036..1f209ef9 100644
--- a/src/ipaddr/ng_ipaddr.h
+++ b/src/ipaddr/ng_ipaddr.h
@@ -1,6 +1,4 @@
 /*
- * Functions for AF_ agnostic ipv4/ipv6 handling.
- *
  * (c) 2008 Florian Westphal <fw@strlen.de>, public domain.
  */
 
@@ -8,6 +6,11 @@
 #define NG_IPADDR_HDR
 #include "portab.h"
 
+/**
+ * @file
+ * Functions for AF_ agnostic ipv4/ipv6 handling (header).
+ */
+
 #include <assert.h>
 #include <sys/socket.h>
 #include <netinet/in.h>