www.pudn.com > gps_working.rar > echo_fixed.cpp
#include "ipad_echo_fixed.h"
#ifdef WIN32
void debug_output(char *s)
{
#ifdef _CONSOLE
printf(s);
#else
FILE *file;
if (s==NULL) {
return;
}
file = fopen("log.txt", "a");
fwrite(s, 1, strlen(s), file);
fclose(file);
#endif
}
#endif