(2006-03の一覧)
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

2006-03-13 Mon (他の年の同じ日: 2007)

16進表記の文字列を数値として取得する
2006-03-13-3 / カテゴリ: [programming][c] / [permlink]

char hexstr[] = "0x80";
int  n;
sscanf(hexstr, "0x%02X", &n);
n は 128

[2005-04-20-1] 応用力が足りないな>私

dateでソートしてその状態でMHフォルダの番号を振りなおす
2006-03-13-2 / カテゴリ: [linux][wanderlust] / [permlink]

標準でこの機能ないのかな…。とりあえず、mew と併用して対処(^^;
一旦 mew を起動し、mew の summary-mode の S でソートする。これでソートされた状態で MH の番号が振りなおされるので、wanderlust で該当フォルダで s -> all する。

wanderlust (の画面)に慣れてしまい、3ペインの画面だと狭くて使いにくい^^;

ネットワークバイトオーダへの変換
2006-03-13-1 / カテゴリ: [network][programming][c] / [permlink]

htonl ... long int htonl(long int hostLong) /* host to network long */
htons ... short int htons(short int hostLong) /* host to network short */
ntohl ... long int ntohl(long int netLong) /* network to host long */
ntohs ... short int ntohs(short int netLong) /* network to host short */
ようやく「読める」ようになった.
参考: TCP/IP ソケットプログラミング C言語編

:
struct sockaddr_in server;
:

:
server.sin_addr.s_addr = htonl(INADDR_ANY);
server.sin_port = htons(PORT);
:
前の日 / 次の日 / 最新 / 2006-03

2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
2004 : 01 02 03 04 05 06 07 08 09 10 11 12

最終更新時間: 2013-05-02 16:12