Examplefile with a fileheader and function.
Make a copy and modify:
See for filegroupnames in ../dox/modules.dox
/* templateFile.c 2009-03-03 RF Purpose: use this file as a templete for a new c-file for Details see ../dox/CodingHints_Doxygen.dox ----------------------------------------------------- TODO: ----------------------------------------------------- Modifications: 2009-03-03 Created. RF. ----------------------------------------------------- *//*! \file ../dox/templateFile.c \ingroup group_xx use as a templete for a new c-file \code ===================================================== Liste_Funktionen_Beginn: templateFunction does nothing .. Liste_Funktionen_Ende: ===================================================== -see also: ../dox/modules.dox - internal: - usage examples: - OFFLINE tests: \endcode *//* */ #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> //================================================================ int templateFunction (int ii) { //================================================================ ///\code /// Description of function templateFunction /// Input: /// ii not used /// Output: /// retCod always 0 ///\endcode printf("templateFunction %d\n",ii); return 0; } // EOF