This is the mail archive of the frysk@sourceware.org mailing list for the frysk project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

frysk meeting 2007-10-31 at 9:30 us east coast time


[if you would like to dial in then contact me]
[note that all the timezones are a-chang'in: check your local time]

This week, we return to our favorite program:

#include <unistd.h>

void
print(char *what) {
 while (*what != '\0') {
   write(1, what, 1);
   what++;
 }
}

int
main(int argc, char** argv) {
 // XXX: This forgets to check ARGC.
 print(argv[1]);
 print("\n");
 return 0;
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]