From: Roger Dingledine Date: Mon, 10 May 2004 02:43:41 +0000 (+0000) Subject: doxygen for tor_main.c X-Git-Tag: debian-version-0.0.6.2-1~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9968f1da984bc35cd1b7070fc05f2e5392613a2c;p=thirdparty%2Ftor.git doxygen for tor_main.c svn:r1828 --- diff --git a/src/or/tor_main.c b/src/or/tor_main.c index 145828790b..59af33a58a 100644 --- a/src/or/tor_main.c +++ b/src/or/tor_main.c @@ -1,14 +1,17 @@ -/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */ +/* Copyright 2001-2004 Roger Dingledine. */ /* See LICENSE for licensing information */ /* $Id$ */ -/***** - * tor_main.c: Entry point for tor binary. (We keep main() in a - * separate file so that our unit tests can use functions from main.c) - *****/ +/** + * \file tor_main.c + * \brief Entry point for tor binary. + **/ int tor_main(int argc, char *argv[]); +/** We keep main() in a separate file so that our unit tests can use + * functions from main.c) + */ int main(int argc, char *argv[]) { return tor_main(argc, argv);