-
-
[求助]这样的C代码如何写成arm代码
-
发表于:
2014-3-12 19:32
7609
-
#define LOG_FILE_PATH "/data/local/tmp/test.db"
void writeLog( const char * lpText )
{
int nTestFd = -1;
nTestFd = open(LOG_FILE_PATH,O_RDWR|O_APPEND);
if( nTestFd == -1 )
{
nTestFd = open(LOG_FILE_PATH,O_CREAT);
if(nTestFd == -1)
return ;
close(nTestFd);
nTestFd = open(LOG_FILE_PATH,O_RDWR|O_APPEND);
}
if(nTestFd == -1)
{
printf("@@@@@@@@@@@@open log file: failed@@@@@@@@@@@@\n");
return ;
}
write(nTestFd,lpText,strlen(lpText));
close(nTestFd);
}
[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)