2010-09-21, 12:59 PM
Eosian Wrote:Windows likes to do 0d0a, *nixes are more explicit and tend towards just \n but I'm used to \n\r from TTY outputs.
Compiled and worked successfully on my sample which is what matters
Code:
int main(void)
{
short theRealMansWay;
theRealMansWay = ntoh16("\n\r");
return 0;
}
