摘要: int strlen(char* s){ int ret = 0; while(*s != 0) { ret++; *s++; } return ret;}char* strcpy(char* dest, char* src){ cha... 阅读全文
posted @ 2015-06-07 21:14 破冰Lab-Cookun 阅读(296) 评论(0) 推荐(0)
摘要: #include char code[] = { 0x64,0x10,0x00,0x00,0x20,0x64,0x00,0x01,0x00,0x80, 0x01,0x90,0x08,0x07,0x20,0x64,0xa0,0x00,... 阅读全文
posted @ 2015-06-07 18:58 破冰Lab-Cookun 阅读(554) 评论(0) 推荐(0)