摘要:
#include <stdio.h>#include <string.h>#include <assert.h>#include <stdlib.h>char *mystrncpy(char *dst, const char *src, size_t n){ assert(dst != NULL && src != NULL); char *dstCopy = dst; while (n && (... 阅读全文
摘要:
http://bbs.chinaunix.net/thread-25356-1-1.html #include <stdio.h>#include <string.h>#include <assert.h>#include <stdlib.h>char *strcpy(char *strDest, const char *strSrc){ assert(strDest != NULL && st... 阅读全文
摘要:
http://www.onmoso.com/android/331.html 阅读全文
摘要:
#include <assert.h>void assert(scalar expression);表达式为假,则调用abort终止程序的执行。也就是说,只有在满足表达式的情况下,程序才继续执行。 阅读全文