2020年7月3日

摘要: #include <stdio.h> char* Lx_itoaEx(long value, char* str, long radix) { static char dig[] = "0123456789" "abcdefghijklmnopqrstuvwxyz"; long n = 0, neg 阅读全文
posted @ 2020-07-03 17:23 lydstory 阅读(489) 评论(0) 推荐(0)
摘要: char* Lx_itoaEx(int value, char* str, int radix) { static char dig[] = "0123456789" "abcdefghijklmnopqrstuvwxyz"; int n = 0, neg = 0; unsigned int v; 阅读全文
posted @ 2020-07-03 16:11 lydstory 阅读(284) 评论(0) 推荐(0)
摘要: https://github.com/libharu/libharu 阅读全文
posted @ 2020-07-03 15:34 lydstory 阅读(138) 评论(0) 推荐(0)
摘要: http://www.vulcanware.com/cpp_pdf/index.html http://www.vulcanware.com/resume.html http://www.vulcanware.com/more_cpp.html 老外个人简历例子代码 阅读全文
posted @ 2020-07-03 14:59 lydstory 阅读(145) 评论(0) 推荐(0)
摘要: 1.static修饰作用于本地文件 2.不能全局访问 局部一个文件访问 阅读全文
posted @ 2020-07-03 08:52 lydstory 阅读(102) 评论(0) 推荐(0)

导航