Retourner au contenu associé (journal : Driver NTFS pour linux avec lecture/ecriture)
Posté par benoar le 15 juillet 2006 à 22:06. En réponse au journal Driver NTFS pour linux avec lecture/ecriture. Évalué à 6.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: Ça a l'air stable
Posté par benoar . En réponse au journal Driver NTFS pour linux avec lecture/ecriture. Évalué à 6.
Le test se fait plutôt avec une union :
union { int i; char c; } test;
test.i = 1;
if ( test.c == 1) {
printf("little endian\n");
} else {
printf("big endian\n");
}