Design
c_arm.txt
Associated article: Portability & the ARM Processor
Tags: Design
Published source code accompanying the article by Trevor Harmon in which he ports a Linux application to the StrongArm-based iPQA handheld computer. Also see C_ARM.ZIP.
Portability & the ARM Processor
by Trevor Harmon
Listing One
char c = -1;
if (c < 0)
printf("c<0n");
else
printf("c>=0n");
Listing Two
char ch;
FILE* file;
file = fopen("textfile", &...


