2020/12/02 (更新日: 2021/04/29) [memo][C言語]typedef 雑学 参考:Wikipedia ・データ型に新しい名前を付ける typedef int boolean_t; boolean_t is_even_number(int x) { return x % 2 == 0; } int型だが「boolean_t」と付ける事で戻り値の意味を明確化出来る。 関連リンク 【まとめ】C言語 【趣味】 【雑学】