From 618a6e6e3dad6d879cb6b8ba4b291d48610f1d14 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 9 May 2010 11:18:22 +0200 Subject: Remove Doxyfile (not really useful for a single program) --- .gitignore | 1 - Doxyfile | 17 ----------------- src/host.c | 13 ------------- 3 files changed, 31 deletions(-) delete mode 100644 Doxyfile diff --git a/.gitignore b/.gitignore index fbd5a69..ae3c172 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ /bin/ -/doc/ diff --git a/Doxyfile b/Doxyfile deleted file mode 100644 index ae2f70e..0000000 --- a/Doxyfile +++ /dev/null @@ -1,17 +0,0 @@ -PROJECT_NAME = host - -INPUT = src -OUTPUT_DIRECTORY = doc - -OPTIMIZE_OUTPUT_FOR_C = YES - -EXTRACT_ALL = YES -EXTRACT_STATIC = YES -TAB_SIZE = 4 - -GENERATE_HTML = YES -GENERATE_LATEX = NO -GENERATE_MAN = YES -GENERATE_RTF = NO -GENERATE_XML = NO -GENERATE_QHP = NO diff --git a/src/host.c b/src/host.c index 60ddb58..c15ef18 100644 --- a/src/host.c +++ b/src/host.c @@ -12,22 +12,9 @@ #include #include -/** - * \brief Print some usage information - */ - #define PRINT_USAGE \ fprintf(stderr, "Usage: %s [-46r] \n", argv[0]) -/** - * \brief convert addrinfo to simple IP address - * - * \param address addrinfo struct containing the IP - * \param ip string for the resulting IP - * \param length length of ip - * \return 0 on failure, 1 on success - */ - static inline int addr_to_ip(const struct addrinfo *address, char *ip, int length) { void *ptr; switch (address->ai_family) { -- cgit v1.2.3