发布时间:2015-02-06 14:54:26
=======================================================================================================转载请注明原文地址:http://blog.csdn.net/crushonme/article/details/10287693部分模块由于没有用过,也没看到SysLink包中提供例子,所以只是简略介绍。文中给出的API并不会给出相关解释,请参考.........【阅读全文】
发布时间:2015-02-06 14:51:16
函数名: strdup功 能: 将串拷贝到新建的位置处用 法: char *strdup(char *str); 这个函数在linux的man手册里解释为:The strdup() function returns a pointer to a new string which is aduplicate of the strings. Memory for thenew string is obtained withmalloc(3),.........【阅读全文】
发布时间:2015-02-06 14:46:53
我分别在XP的环境和linux环境下编译运行C代码,我发现一个不解的现象: 现象描述: 两个字符串 char* from, char* to;要把from的内容复制给to。 我在XP下,用strcpy(to, from)出现memory问题,于是换成 to = strdup(from),就运行正常。 而在linux下,用to = strdup(from)出现m.........【阅读全文】