标签:
1 static RD_INLINE RD_UNUSED char *rd_strdup(const char *s) { 2 #ifndef _MSC_VER 3 char *n = strdup(s); 4 #else 5 char *n = _strdup(s); 6 #endif 7 assert(n); 8 return n; 9 }
1 test_topics_sh = rd_strdup(val);
标签:
原文地址:http://www.cnblogs.com/the-tops/p/5891499.html