0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

doxygen(C言語)の書き方

Last updated at Posted at 2021-02-04

基本的にはこちらのサイトを参照。
Doxygen 書き方メモ (C, C++)

マクロに対するコメントが生成されない場合

@defなしでコメントを書くと生成されます。

/**
 * 詳細コメントを書く
 */
#define HOGE 10

//! 簡単なコメントを書く
#define HOGE 10

構造体に対するコメント

//! コメントを書く
typedef struct {
  int hoge;
} Hoge;

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?