C言語

GCCの-lオプション

Linuxでpcapを使おうとした際に undefined reference to "pcap_findalldevs" なんて出たので。gcc hoge.c -lpcap でコンパイルが通る。 lの意味は「-lxxxを指定すると、libxxx.aをリンクする」ということ。 ちなみにリンク時に探すディレクトリは-Lオブショ…

時刻の取得

時刻を表示したい場合 time_t timer; tm timestruct; TCHAR timebuf[20];//文字列にする場合のバッファtime(&timer); localtime_s(&timestruct, &timer); wcsftime(timebuf,sizeof(timebuf)/sizeof(timebuf[0]), _T("%m/%d %H:%M:%S),&timestruct); で、time…