Obsah

Doxygen

Instalace

apt-get install doxygen doxygen-gui
doxywizard
doxygen -g mydoxy.cfg

Základní úprava konfiguračního souboru

PROJECT_NAME           = "My Proj"
PROJECT_NUMBER         = "1.0"
OUTPUT_DIRECTORY       = "doc"
INPUT                  = "src"

Doxygen komentáře zdrojových kódů

Hlavička

/*!
  * \file asusutility.c
  * \brief Asus infosvr daemon tester
  * \author Jan Bariencik <143248@mail.muni.cz>
  * \date 2010
  * \note tested on: Asus WL-500gP V2 (3.0.3.5)
  * 
  * Utility for demonstratig infosvr daemon vulnerability running on 
  * Asus wireless router. 
  */
 

Funkce

/*!
  * \brief       receive and process packet until expected type get
  * \param con   connection context
  * \param type  expected type
  */
void
recvfromPKG(conn_pkg_t  * con, int type)
 

Proměnné a struktury

Main page