summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-05-10 02:43:41 +0000
committerRoger Dingledine <arma@torproject.org>2004-05-10 02:43:41 +0000
commit9968f1da984bc35cd1b7070fc05f2e5392613a2c (patch)
treee2a951d5258355d0a77973e6faadeff74ca0be4f
parenta26265c3ccacef9ac8ff16cdf26a03652d5c891d (diff)
downloadtor-9968f1da984bc35cd1b7070fc05f2e5392613a2c.tar.gz
tor-9968f1da984bc35cd1b7070fc05f2e5392613a2c.zip
doxygen for tor_main.c
svn:r1828
-rw-r--r--src/or/tor_main.c13
1 files changed, 8 insertions, 5 deletions
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);