├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── Makefile ├── Makefile.gcc ├── Makefile.inc ├── Makefile.inc.inc ├── make.exe ├── xbin.cc ├── xbin.h ├── xblk.cc ├── xblk.h ├── xcodecvt.cc ├── xcodecvt.h ├── xcodecvt_iconv.h ├── xcodecvt_std.h ├── xcodecvt_win.h ├── xcrc.cc ├── xcrc.h ├── xhexbin.cc ├── xhexbin.h ├── xhook.cc ├── xhook.h ├── xlib_test.cc ├── xlib_test.h ├── xlog.cc ├── xlog.h ├── xmsg.cc ├── xmsg.h ├── xrand.cc ├── xrand.h ├── xsig.cc ├── xsig.h ├── xswap.cc ├── xswap.h ├── xvarint.cc ├── xvarint.h ├── xxstring.cc └── xxstring.h /.gitignore: -------------------------------------------------------------------------------- 1 | x64 2 | x86 3 | gcc 4 | *.rar -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/Makefile.gcc -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/Makefile.inc -------------------------------------------------------------------------------- /Makefile.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/Makefile.inc.inc -------------------------------------------------------------------------------- /make.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/make.exe -------------------------------------------------------------------------------- /xbin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xbin.cc -------------------------------------------------------------------------------- /xbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xbin.h -------------------------------------------------------------------------------- /xblk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xblk.cc -------------------------------------------------------------------------------- /xblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xblk.h -------------------------------------------------------------------------------- /xcodecvt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xcodecvt.cc -------------------------------------------------------------------------------- /xcodecvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xcodecvt.h -------------------------------------------------------------------------------- /xcodecvt_iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xcodecvt_iconv.h -------------------------------------------------------------------------------- /xcodecvt_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xcodecvt_std.h -------------------------------------------------------------------------------- /xcodecvt_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xcodecvt_win.h -------------------------------------------------------------------------------- /xcrc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xcrc.cc -------------------------------------------------------------------------------- /xcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xcrc.h -------------------------------------------------------------------------------- /xhexbin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xhexbin.cc -------------------------------------------------------------------------------- /xhexbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xhexbin.h -------------------------------------------------------------------------------- /xhook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xhook.cc -------------------------------------------------------------------------------- /xhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xhook.h -------------------------------------------------------------------------------- /xlib_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xlib_test.cc -------------------------------------------------------------------------------- /xlib_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xlib_test.h -------------------------------------------------------------------------------- /xlog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xlog.cc -------------------------------------------------------------------------------- /xlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xlog.h -------------------------------------------------------------------------------- /xmsg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xmsg.cc -------------------------------------------------------------------------------- /xmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xmsg.h -------------------------------------------------------------------------------- /xrand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xrand.cc -------------------------------------------------------------------------------- /xrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xrand.h -------------------------------------------------------------------------------- /xsig.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xsig.cc -------------------------------------------------------------------------------- /xsig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xsig.h -------------------------------------------------------------------------------- /xswap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xswap.cc -------------------------------------------------------------------------------- /xswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xswap.h -------------------------------------------------------------------------------- /xvarint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xvarint.cc -------------------------------------------------------------------------------- /xvarint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xvarint.h -------------------------------------------------------------------------------- /xxstring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xxstring.cc -------------------------------------------------------------------------------- /xxstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pig4210/xlib/HEAD/xxstring.h --------------------------------------------------------------------------------