doxygen example

14 篇文章 0 订阅
#ifndef _DOXYGEN_SAMPLE_H
#define  _DOXYGEN_SAMPLE_H

/*! \mainpage My Personal Index Page
 *
 * \section intro_sec Introduction
 *
 * This is the introduction.
 *
 * \section install_sec Installation
 *
 * \subsection step1 Step 1: Opening the box
 *
 */

#include <stdio.h>
 
/** 
 * @file doxygen_sample.h
 * @Author ted  (guolb57@163.com)
 * @date september, 2011
 * @version 0.1
 * @brief This is a demo for doxygen \n
 *
 * Include many key word of doxygen
 */

/**
 * @name  Example API Actions
 * @brief Example actions available
 * @ingroup example
 *
 * This API provides certain actions as an example
 */


/*! \var typedef unsigned int UINT32
    \brief A type definition for a .
    
    Details.
*/
typedef unsigned int UINT32;

/*! \var int errno
    \brief Contains the last error code.

    \warning Not thread safe!
*/
int errno;

/* @def MAX(a,b)
 * @brief A macro that returns the maximum of \a a and \a b.
 * Details.
*/
#define MAX(a,b) (((a)>(b))?(a):(b))


/*!
    \brief Writes \a count bytes from \a buf to the filedescriptor \a fd.
    \param fd The descriptor to write to.
    \param buf The data buffer to write.
    \param count The number of bytes to write.
*/
size_t write(int fd ,const char *buf , size_t count);

/*! \fn int open(const char *pathname,int flags)
    \brief Opens a file descriptor.

    \param pathname The name of the descriptor.
    \param flags Opening flags.
*/
int open(const char *pathname ,int flags);

/*! \fn int close(int fd)
    \brief Closes the file descriptor \a fd.
    \param fd The descriptor to close.
*/
int close(int fd);

/*! \fn int read(int fd,char *buf,size_t count)
    \brief Read bytes from a file descriptor.
    \param fd The descriptor to read from.
    \param buf The buffer to read into.
    \param count The number of bytes to read.
*/
int read(int fd,char *buf,size_t count);

/**
 * @fn example_doxygen(int times)
 * @brief this just doxygen example, printf \a times times
 *
 * @todo add more key word here
 * @bug  there is no bug
 *
 * @warning this just do noting
 *
 * @param [in] repeate Number of times to do noting.
 *
 * @retval TRUE  successfully did noting
 * @retval FALSE Oops, did someting
 *
 * Example Usage:
 * @code 
 *   example_doxygen(3);  
 * @endcode
 */
int example_doxygen(int times);


#endif


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值