From: Andre Noll Date: Mon, 10 Nov 2008 00:39:18 +0000 (+0100) Subject: Add \brief command to file header to make doxygen happy. X-Git-Tag: v0.0.5~1^2 X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=4e757d60f7642c61e09a20a2a1de442b23208966;ds=sidebyside Add \brief command to file header to make doxygen happy. --- diff --git a/adu.c b/adu.c index 409aed0..dda9fd2 100644 --- a/adu.c +++ b/adu.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file adu.c The main functions used by all modes of operation. */ +/** \file adu.c \brief The main functions used by all modes of operation. */ #include "adu.h" #include /* readdir() */ #include diff --git a/create.c b/create.c index 29b46ed..3a221ca 100644 --- a/create.c +++ b/create.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file create.c The create mode of adu. */ +/** \file create.c \brief The create mode of adu. */ #include /* readdir() */ #include "format.h" diff --git a/fd.c b/fd.c index 5c125fa..e1d243e 100644 --- a/fd.c +++ b/fd.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file fd.c Helper functions for file descriptor handling. */ +/** \file fd.c \brief Helper functions for file descriptor handling. */ #include #include diff --git a/format.c b/format.c index 02edf37..f1d1247 100644 --- a/format.c +++ b/format.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file format.c Functions for pretty-printing numbers and strings. */ +/** \file format.c \brief Functions for pretty-printing numbers and strings. */ #include /* readdir() */ #include "adu.h" diff --git a/select.c b/select.c index cd18bee..209bf14 100644 --- a/select.c +++ b/select.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file select.c The select mode of adu. */ +/** \file select.c \brief The select mode of adu. */ #include /* readdir() */ #include diff --git a/string.c b/string.c index aec62ae..d42a31b 100644 --- a/string.c +++ b/string.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file string.c Memory allocation and string handling functions. */ +/** \file string.c \brief Memory allocation and string handling functions. */ #include "adu.h" #include "string.h" diff --git a/user.c b/user.c index 0de05d0..8959c84 100644 --- a/user.c +++ b/user.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file user.c uid User and user ID handling. */ +/** \file user.c \brief User and user ID handling. */ #include "adu.h" #include /* readdir() */