Skip to content

Instantly share code, notes, and snippets.

@kazmura11
Created February 6, 2015 19:53
Show Gist options
  • Save kazmura11/8d03bf39e9e62490e20e to your computer and use it in GitHub Desktop.
Save kazmura11/8d03bf39e9e62490e20e to your computer and use it in GitHub Desktop.
C言語のヘッダの書き方(a.h)
#ifndef A_H_INCLUDED__
#define A_H_INCLUDED__
// 公開関数
void bar_proc();
// 下記は非公開 ちなみに.cにかいてstaticにする
//void bar_proc_1(Bar *bar);
//void bar_proc_2(Bar *bar, int n);
#endif /* A_H_INCLUDED__ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment