├── .github └── workflows │ ├── codacy-analysis.yml │ ├── freebsd.yml │ ├── netbsd.yml │ ├── openbsd.yml │ ├── vcpkg-macos.yml │ └── vcpkg-ubuntu.yml ├── .gitignore ├── .ycm_extra_conf.py ├── CMakeLists.txt ├── LICENSE ├── README.md ├── algorithm ├── base16 │ ├── CMakeLists.txt │ └── src │ │ ├── lib │ │ ├── base16.c │ │ ├── base16.h │ │ ├── base16.pc.in │ │ └── base16Config.cmake.in │ │ ├── main │ │ ├── base16-decode.c │ │ └── base16-encode.c │ │ └── test │ │ ├── FindCUnit.cmake │ │ └── base16.c ├── bcc │ ├── CMakeLists.txt │ ├── cmake │ │ └── modules │ │ │ └── FindCUnit.cmake │ └── src │ │ ├── lib │ │ ├── bcc.c │ │ ├── bcc.h │ │ └── bcc.pc.in │ │ ├── main │ │ └── bccsum.c │ │ └── test │ │ └── bcc.c ├── chinese-calendar │ ├── CMakeLists.txt │ ├── cmake │ │ └── modules │ │ │ └── FindCUnit.cmake │ └── src │ │ ├── lib │ │ ├── chinese-calendar.c │ │ ├── chinese-calendar.h │ │ └── chinese-calendar.pc.in │ │ ├── main │ │ └── chinese-calendar.c │ │ └── test │ │ └── chinese-calendar.c ├── convert │ ├── convert.c │ └── number │ │ ├── convertNum.c │ │ ├── convertNum2.c │ │ ├── convertNum3.c │ │ ├── convertNum4.c │ │ └── convertNum5.c ├── crc │ ├── Android.mk │ ├── CRC.c │ ├── CRC.h │ ├── CRCTest.c │ └── Makefile ├── lrc │ ├── CMakeLists.txt │ ├── cmake │ │ └── modules │ │ │ └── FindCUnit.cmake │ └── src │ │ ├── lib │ │ ├── lrc.c │ │ ├── lrc.h │ │ └── lrc.pc.in │ │ ├── main │ │ └── lrcsum.c │ │ └── test │ │ └── lrc.c └── url │ ├── CMakeLists.txt │ ├── cmake │ └── modules │ │ └── FindCUnit.cmake │ └── src │ ├── lib │ ├── url.c │ ├── url.h │ └── url.pc.in │ ├── main │ └── url.c │ └── test │ └── url.c ├── autotools ├── .deps │ ├── packcc.Po │ └── test.Po ├── Makefile ├── Makefile.am ├── Makefile.in ├── aclocal.m4 ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── requests │ ├── traces.0 │ └── traces.1 ├── build-aux │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ └── missing ├── config.h ├── config.h.in ├── config.h.in~ ├── config.log ├── config.status ├── configure ├── configure.ac ├── m4 │ └── ax_prog_cc_for_build.m4 ├── src │ ├── .deps │ │ ├── packcc.Po │ │ └── test.Po │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── packcc.c │ └── test.c └── stamp-h1 ├── cmake └── modules │ └── FindCUnit.cmake ├── compiler └── gcc │ ├── Doption │ ├── Doption.c │ └── Makefile ├── library ├── cJSON │ ├── CMakeLists.txt │ ├── cJSON-example.c │ ├── cJSON.c │ ├── cJSON.h │ └── cJSON.sh ├── libarchive │ ├── CMakeLists.txt │ ├── FindLibArchive.cmake │ └── src │ │ ├── include │ │ └── untar.h │ │ ├── lib │ │ ├── untar.c │ │ ├── untar.pc.in │ │ └── untarConfig.cmake.in │ │ ├── main │ │ └── untar.c │ │ └── test │ │ ├── FindCUnit.cmake │ │ └── untar.c ├── libcares │ ├── CMakeLists.txt │ ├── FindCARES.cmake │ └── src │ │ ├── ares.h │ │ ├── dns.c │ │ └── dns2.c ├── libcurl │ ├── CMakeLists.txt │ ├── FindCURL.cmake │ └── src │ │ ├── include │ │ └── http.h │ │ ├── lib │ │ ├── http.c │ │ ├── http.pc.in │ │ └── httpConfig.cmake.in │ │ ├── main │ │ └── http.c │ │ └── test │ │ ├── FindCUnit.cmake │ │ └── http.c ├── libelf │ ├── CMakeLists.txt │ ├── FindLIBELF.cmake │ └── src │ │ └── check-if-has-dynamic-section.c ├── libgit2 │ ├── CMakeLists.txt │ ├── FindLibGit2.cmake │ ├── git-branch-list.c │ ├── git-clone-simple.c │ ├── git-clone.c │ ├── git-config-list.c │ ├── git-fetch.c │ ├── git-init.c │ ├── git-open.c │ ├── git-pull.c │ ├── git-remote-list.c │ ├── git-rev-parse.c │ ├── git-status-list.c │ ├── git-submodule-update.c │ ├── git-sync.c │ └── git-tag-name-list.c ├── libyaml │ ├── CMakeLists.txt │ ├── FindLibYAML.cmake │ ├── test.yml │ └── yaml-based-formula-parser.c ├── mbedTLS │ ├── AES │ │ ├── AES.java │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── aesTest.c │ │ └── mbedtls │ │ │ ├── aes.c │ │ │ ├── aes.h │ │ │ ├── base16.c │ │ │ ├── base16.h │ │ │ ├── config.h │ │ │ ├── platform.c │ │ │ ├── platform.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── threading.c │ │ │ └── threading.h │ ├── HMAC │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── hmacTest.c │ │ └── mbedtls │ │ │ ├── .!9834!config.h │ │ │ ├── config.h │ │ │ ├── error.c │ │ │ ├── error.h │ │ │ ├── md.c │ │ │ ├── md.h │ │ │ ├── md_internal.h │ │ │ ├── platform.c │ │ │ ├── platform.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── sha256.c │ │ │ ├── sha256.h │ │ │ ├── threading.c │ │ │ └── threading.h │ ├── MD5 │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── mbedtls │ │ │ ├── config.h │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── threading.c │ │ │ └── threading.h │ │ ├── md5Test │ │ └── md5Test.c │ ├── PBKDF2 │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── mbedtls │ │ │ ├── .!9834!config.h │ │ │ ├── config.h │ │ │ ├── error.c │ │ │ ├── error.h │ │ │ ├── md.c │ │ │ ├── md.h │ │ │ ├── md_internal.h │ │ │ ├── pkcs5.c │ │ │ ├── pkcs5.h │ │ │ ├── platform.c │ │ │ ├── platform.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── sha256.c │ │ │ ├── sha256.h │ │ │ ├── threading.c │ │ │ └── threading.h │ │ ├── pbkdf2Test.c │ │ └── pbkdf2Test.html │ ├── RIPEMD-160 │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── mbedtls │ │ │ ├── config.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── ripemd160.c │ │ │ ├── ripemd160.h │ │ │ ├── threading.c │ │ │ └── threading.h │ │ └── ripemd160Test.c │ ├── SHA-1 │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── mbedtls │ │ │ ├── config.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── threading.c │ │ │ └── threading.h │ │ └── sha1Test.c │ ├── SHA-224 │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── mbedtls │ │ │ ├── config.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── sha256.c │ │ │ ├── sha256.h │ │ │ ├── threading.c │ │ │ └── threading.h │ │ └── sha224Test.c │ ├── SHA-256 │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── mbedtls │ │ │ ├── config.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── sha256.c │ │ │ ├── sha256.h │ │ │ ├── threading.c │ │ │ └── threading.h │ │ └── sha256Test.c │ ├── SHA-384 │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── mbedtls │ │ │ ├── config.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── sha512.c │ │ │ ├── sha512.h │ │ │ ├── threading.c │ │ │ └── threading.h │ │ └── sha384Test.c │ ├── SHA-512 │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── mbedtls │ │ │ ├── config.h │ │ │ ├── platform_util.c │ │ │ ├── platform_util.h │ │ │ ├── sha512.c │ │ │ ├── sha512.h │ │ │ ├── threading.c │ │ │ └── threading.h │ │ └── sha512Test.c │ └── base64 │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── include │ │ └── base64.h │ │ ├── lib │ │ ├── base64.c │ │ ├── base64.pc.in │ │ ├── base64_mbedtls.c │ │ └── base64_mbedtls.h │ │ ├── main │ │ ├── base64-decode.c │ │ └── base64-encode.c │ │ └── test │ │ ├── FindCUnit.cmake │ │ └── base64.c ├── openssl │ └── SHA-256 │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── include │ │ └── sha256sum.h │ │ ├── lib │ │ ├── sha256sum.c │ │ ├── sha256sum.pc.in │ │ └── sha256sumConfig.cmake.in │ │ ├── main │ │ └── sha256sum.c │ │ └── test │ │ ├── FindCUnit.cmake │ │ └── sha256sum.c └── qrencode │ ├── CMakeLists.txt │ ├── FindLibQrencode.cmake │ └── qrencode.c ├── standard ├── iso │ ├── comment │ │ └── comment.c │ ├── data-type │ │ ├── array │ │ │ ├── 99MultipTable.c │ │ │ ├── array.c │ │ │ ├── array2.c │ │ │ ├── array3.c │ │ │ ├── array4.c │ │ │ ├── array5.c │ │ │ ├── array6.c │ │ │ ├── array7.c │ │ │ └── array8.c │ │ ├── char │ │ │ ├── char.c │ │ │ ├── char2.c │ │ │ └── chinese.c │ │ ├── enum │ │ │ ├── enum.c │ │ │ ├── enum2.c │ │ │ ├── enum3.c │ │ │ ├── enum4.c │ │ │ ├── enum5.c │ │ │ ├── enum6.c │ │ │ ├── enum7.c │ │ │ └── enum8.c │ │ ├── pointer │ │ │ ├── pointer.c │ │ │ ├── pointer.i │ │ │ ├── pointer10.c │ │ │ ├── pointer2.c │ │ │ ├── pointer3.c │ │ │ ├── pointer4.c │ │ │ ├── pointer5.c │ │ │ ├── pointer6.c │ │ │ ├── pointer7.c │ │ │ ├── pointer8.c │ │ │ ├── pointer9.c │ │ │ ├── swap.c │ │ │ ├── swap2.c │ │ │ └── swap3.c │ │ ├── struct │ │ │ ├── person.c │ │ │ ├── person2.c │ │ │ ├── person3.c │ │ │ ├── person4.c │ │ │ ├── person5.c │ │ │ ├── person6.c │ │ │ └── person7.c │ │ └── union │ │ │ ├── union.c │ │ │ ├── union2.c │ │ │ ├── union3.c │ │ │ ├── union4.c │ │ │ └── union5.c │ ├── function │ │ ├── main1.c │ │ ├── main2.c │ │ ├── main3.c │ │ └── main4.c │ ├── header │ │ ├── assert.h │ │ │ ├── assert.c │ │ │ └── assert2.c │ │ ├── ctype.h │ │ │ ├── isalnum.c │ │ │ ├── isalpha.c │ │ │ ├── isascii.c │ │ │ ├── isblank.c │ │ │ ├── iscntrl.c │ │ │ ├── isdigit.c │ │ │ ├── isgraph.c │ │ │ ├── islower.c │ │ │ ├── isprint.c │ │ │ ├── ispunct.c │ │ │ ├── isspace.c │ │ │ ├── isupper.c │ │ │ └── isxdigit.c │ │ ├── limits.h │ │ │ └── limits.c │ │ ├── locale.h │ │ │ ├── locale.c │ │ │ └── localeconv.c │ │ ├── math.h │ │ │ ├── acos.c │ │ │ ├── asin.c │ │ │ ├── atan.c │ │ │ ├── atan2.c │ │ │ ├── ceil.c │ │ │ ├── cosh.c │ │ │ ├── exp.c │ │ │ ├── floor.c │ │ │ ├── fmod.c │ │ │ ├── log.c │ │ │ ├── math.c │ │ │ ├── modf.c │ │ │ ├── sin.c │ │ │ ├── sin2.c │ │ │ ├── sinh.c │ │ │ ├── sqrt.c │ │ │ └── tanh.c │ │ ├── setjmp.h │ │ │ ├── goto.c │ │ │ ├── goto2.c │ │ │ ├── setjmp.c │ │ │ ├── setjmp2.c │ │ │ └── setjmp3.c │ │ ├── signal.h │ │ │ └── signal.c │ │ ├── stdarg.h │ │ │ ├── stdarg.c │ │ │ └── stdarg2.c │ │ ├── stdbool.h │ │ │ ├── bool.c │ │ │ ├── bool.h │ │ │ ├── bool.s │ │ │ └── bool2.c │ │ ├── stdio.h │ │ │ ├── fgetc.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fprintf │ │ │ │ ├── Makefile │ │ │ │ ├── test │ │ │ │ └── test.c │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fread.c │ │ │ ├── freopen.c │ │ │ ├── fseek.c │ │ │ ├── ftell.c │ │ │ ├── fwrite.c │ │ │ ├── getchar.c │ │ │ ├── gets.c │ │ │ ├── output.data │ │ │ ├── perror.c │ │ │ ├── putc.c │ │ │ ├── putchar.c │ │ │ ├── puts.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ └── tmpfile.c │ │ ├── stdlib.h │ │ │ ├── abort.c │ │ │ ├── abort2.c │ │ │ ├── abs.c │ │ │ ├── atexit.c │ │ │ ├── calloc.c │ │ │ ├── exit.c │ │ │ ├── exit2.c │ │ │ ├── getenv.c │ │ │ ├── malloc.c │ │ │ ├── putenv.c │ │ │ ├── rand.c │ │ │ ├── realloc.c │ │ │ ├── realloc2.c │ │ │ ├── setenv.c │ │ │ ├── stdlib.c │ │ │ ├── str2num.c │ │ │ ├── system.c │ │ │ └── unsetenv.c │ │ ├── string.h │ │ │ ├── strcat.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strerror_r.c │ │ │ ├── strlen.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ └── strncpy.c │ │ └── time.h │ │ │ ├── asctime.c │ │ │ ├── clock.c │ │ │ ├── ctime.c │ │ │ ├── difftime.c │ │ │ ├── gmtime.c │ │ │ ├── localtime.c │ │ │ ├── mktime.c │ │ │ ├── strftime.c │ │ │ ├── time.c │ │ │ └── tzset.c │ ├── hello │ │ ├── conditioncompile.c │ │ ├── conditioncompile.i │ │ ├── conditioncompile2.c │ │ ├── conditioncompile2.i │ │ ├── conditioncompile3.c │ │ ├── conditioncompile3.i │ │ ├── hello │ │ ├── hello.c │ │ ├── hello.i │ │ ├── hello.o │ │ ├── hello.s │ │ ├── hello2.c │ │ ├── hello2.h │ │ ├── hello3.c │ │ ├── hello3.h │ │ ├── hong.c │ │ └── hong.i │ ├── macro │ │ └── build_in_macro.c │ ├── number │ │ ├── float │ │ │ ├── float.c │ │ │ ├── float2.c │ │ │ ├── float3.c │ │ │ └── float4.c │ │ ├── int │ │ │ ├── integer.c │ │ │ ├── integer.h │ │ │ ├── integer2.c │ │ │ ├── integer3.c │ │ │ └── integer4.c │ │ ├── number.c │ │ └── number2.c │ ├── operator │ │ ├── sizeof.c │ │ ├── sizeof2.c │ │ ├── sizeof3.c │ │ ├── sizeof4.c │ │ └── typedef.c │ └── variable │ │ ├── __thread │ │ ├── Makefile │ │ └── test.c │ │ ├── auto.c │ │ ├── extern.c │ │ ├── extern2.c │ │ ├── local.c │ │ ├── other.c │ │ ├── other.h │ │ ├── register.c │ │ ├── static.c │ │ └── static2.c ├── linux │ └── eventpool.h │ │ ├── CMakeLists.txt │ │ └── eventpooltest.c └── posix │ ├── dlfcn.h │ ├── Makefile │ ├── add.c │ ├── compile_time_do_not_link.c │ └── compile_time_link.c │ ├── examples │ └── socket │ │ ├── AF_INET │ │ ├── client.c │ │ ├── iplookup.c │ │ └── server.c │ │ └── AF_LOCAL │ │ ├── client.c │ │ └── server.c │ ├── langinfo.h │ ├── Makefile │ └── langinfo.c │ ├── pthread.h │ ├── thread.c │ ├── thread2.c │ ├── thread3.c │ └── thread4.c │ ├── spawn.h │ ├── Makefile │ └── posix_spawn_test.c │ ├── sys │ ├── stat.h │ │ ├── Makefile │ │ ├── stat64 │ │ └── stat64.c │ └── syscall.c │ └── unistd.h │ ├── _exit.c │ ├── chdir.c │ ├── exec.c │ ├── exec2.c │ ├── exec3.c │ ├── fork.c │ ├── getcwd.c │ ├── getopt.c │ ├── getpgid.c │ ├── getpid.c │ ├── getppid.c │ ├── getuid.c │ ├── gid.c │ ├── kill.c │ ├── pathconf.c │ ├── pipe.c │ ├── uid.c │ ├── vfork.c │ ├── wait.c │ ├── wait2.c │ ├── wait3.c │ └── wait4.c ├── thirdpart └── include │ └── CUnit │ ├── Automated.h │ ├── Basic.h │ ├── CUError.h │ ├── CUnit.h │ ├── CUnit_intl.h │ ├── Console.h │ ├── MyMem.h │ ├── TestDB.h │ ├── TestRun.h │ └── Util.h └── utils ├── self_exe_path ├── CMakeLists.txt ├── getexepath.c ├── main.c ├── self.c └── self.h └── sysinfo ├── CMakeLists.txt ├── README.md └── src ├── lib ├── sysinfo.c ├── sysinfo.h ├── sysinfo.pc.in └── sysinfoConfig.cmake.in ├── main └── sysinfo.c └── test ├── FindCUnit.cmake └── sysinfo.c /.github/workflows/codacy-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/.github/workflows/codacy-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/.github/workflows/freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/netbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/.github/workflows/netbsd.yml -------------------------------------------------------------------------------- /.github/workflows/openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/.github/workflows/openbsd.yml -------------------------------------------------------------------------------- /.github/workflows/vcpkg-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/.github/workflows/vcpkg-macos.yml -------------------------------------------------------------------------------- /.github/workflows/vcpkg-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/.github/workflows/vcpkg-ubuntu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build.d/ 2 | output/ 3 | */**/*.pc 4 | -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/README.md -------------------------------------------------------------------------------- /algorithm/base16/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/CMakeLists.txt -------------------------------------------------------------------------------- /algorithm/base16/src/lib/base16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/src/lib/base16.c -------------------------------------------------------------------------------- /algorithm/base16/src/lib/base16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/src/lib/base16.h -------------------------------------------------------------------------------- /algorithm/base16/src/lib/base16.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/src/lib/base16.pc.in -------------------------------------------------------------------------------- /algorithm/base16/src/lib/base16Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/src/lib/base16Config.cmake.in -------------------------------------------------------------------------------- /algorithm/base16/src/main/base16-decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/src/main/base16-decode.c -------------------------------------------------------------------------------- /algorithm/base16/src/main/base16-encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/src/main/base16-encode.c -------------------------------------------------------------------------------- /algorithm/base16/src/test/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/src/test/FindCUnit.cmake -------------------------------------------------------------------------------- /algorithm/base16/src/test/base16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/base16/src/test/base16.c -------------------------------------------------------------------------------- /algorithm/bcc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/bcc/CMakeLists.txt -------------------------------------------------------------------------------- /algorithm/bcc/cmake/modules/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/bcc/cmake/modules/FindCUnit.cmake -------------------------------------------------------------------------------- /algorithm/bcc/src/lib/bcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/bcc/src/lib/bcc.c -------------------------------------------------------------------------------- /algorithm/bcc/src/lib/bcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/bcc/src/lib/bcc.h -------------------------------------------------------------------------------- /algorithm/bcc/src/lib/bcc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/bcc/src/lib/bcc.pc.in -------------------------------------------------------------------------------- /algorithm/bcc/src/main/bccsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/bcc/src/main/bccsum.c -------------------------------------------------------------------------------- /algorithm/bcc/src/test/bcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/bcc/src/test/bcc.c -------------------------------------------------------------------------------- /algorithm/chinese-calendar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/chinese-calendar/CMakeLists.txt -------------------------------------------------------------------------------- /algorithm/chinese-calendar/cmake/modules/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/chinese-calendar/cmake/modules/FindCUnit.cmake -------------------------------------------------------------------------------- /algorithm/chinese-calendar/src/lib/chinese-calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/chinese-calendar/src/lib/chinese-calendar.c -------------------------------------------------------------------------------- /algorithm/chinese-calendar/src/lib/chinese-calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/chinese-calendar/src/lib/chinese-calendar.h -------------------------------------------------------------------------------- /algorithm/chinese-calendar/src/lib/chinese-calendar.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/chinese-calendar/src/lib/chinese-calendar.pc.in -------------------------------------------------------------------------------- /algorithm/chinese-calendar/src/main/chinese-calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/chinese-calendar/src/main/chinese-calendar.c -------------------------------------------------------------------------------- /algorithm/chinese-calendar/src/test/chinese-calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/chinese-calendar/src/test/chinese-calendar.c -------------------------------------------------------------------------------- /algorithm/convert/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/convert/convert.c -------------------------------------------------------------------------------- /algorithm/convert/number/convertNum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/convert/number/convertNum.c -------------------------------------------------------------------------------- /algorithm/convert/number/convertNum2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/convert/number/convertNum2.c -------------------------------------------------------------------------------- /algorithm/convert/number/convertNum3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/convert/number/convertNum3.c -------------------------------------------------------------------------------- /algorithm/convert/number/convertNum4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/convert/number/convertNum4.c -------------------------------------------------------------------------------- /algorithm/convert/number/convertNum5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/convert/number/convertNum5.c -------------------------------------------------------------------------------- /algorithm/crc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/crc/Android.mk -------------------------------------------------------------------------------- /algorithm/crc/CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/crc/CRC.c -------------------------------------------------------------------------------- /algorithm/crc/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/crc/CRC.h -------------------------------------------------------------------------------- /algorithm/crc/CRCTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/crc/CRCTest.c -------------------------------------------------------------------------------- /algorithm/crc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/crc/Makefile -------------------------------------------------------------------------------- /algorithm/lrc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/lrc/CMakeLists.txt -------------------------------------------------------------------------------- /algorithm/lrc/cmake/modules/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/lrc/cmake/modules/FindCUnit.cmake -------------------------------------------------------------------------------- /algorithm/lrc/src/lib/lrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/lrc/src/lib/lrc.c -------------------------------------------------------------------------------- /algorithm/lrc/src/lib/lrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/lrc/src/lib/lrc.h -------------------------------------------------------------------------------- /algorithm/lrc/src/lib/lrc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/lrc/src/lib/lrc.pc.in -------------------------------------------------------------------------------- /algorithm/lrc/src/main/lrcsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/lrc/src/main/lrcsum.c -------------------------------------------------------------------------------- /algorithm/lrc/src/test/lrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/lrc/src/test/lrc.c -------------------------------------------------------------------------------- /algorithm/url/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/url/CMakeLists.txt -------------------------------------------------------------------------------- /algorithm/url/cmake/modules/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/url/cmake/modules/FindCUnit.cmake -------------------------------------------------------------------------------- /algorithm/url/src/lib/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/url/src/lib/url.c -------------------------------------------------------------------------------- /algorithm/url/src/lib/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/url/src/lib/url.h -------------------------------------------------------------------------------- /algorithm/url/src/lib/url.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/url/src/lib/url.pc.in -------------------------------------------------------------------------------- /algorithm/url/src/main/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/url/src/main/url.c -------------------------------------------------------------------------------- /algorithm/url/src/test/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/algorithm/url/src/test/url.c -------------------------------------------------------------------------------- /autotools/.deps/packcc.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /autotools/.deps/test.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/.deps/test.Po -------------------------------------------------------------------------------- /autotools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/Makefile -------------------------------------------------------------------------------- /autotools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/Makefile.am -------------------------------------------------------------------------------- /autotools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/Makefile.in -------------------------------------------------------------------------------- /autotools/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/aclocal.m4 -------------------------------------------------------------------------------- /autotools/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/autom4te.cache/output.0 -------------------------------------------------------------------------------- /autotools/autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/autom4te.cache/output.1 -------------------------------------------------------------------------------- /autotools/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/autom4te.cache/requests -------------------------------------------------------------------------------- /autotools/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /autotools/autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /autotools/build-aux/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/build-aux/compile -------------------------------------------------------------------------------- /autotools/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/build-aux/config.guess -------------------------------------------------------------------------------- /autotools/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/build-aux/config.sub -------------------------------------------------------------------------------- /autotools/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/build-aux/depcomp -------------------------------------------------------------------------------- /autotools/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/build-aux/install-sh -------------------------------------------------------------------------------- /autotools/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/build-aux/missing -------------------------------------------------------------------------------- /autotools/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/config.h -------------------------------------------------------------------------------- /autotools/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/config.h.in -------------------------------------------------------------------------------- /autotools/config.h.in~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/config.h.in~ -------------------------------------------------------------------------------- /autotools/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/config.log -------------------------------------------------------------------------------- /autotools/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/config.status -------------------------------------------------------------------------------- /autotools/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/configure -------------------------------------------------------------------------------- /autotools/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/configure.ac -------------------------------------------------------------------------------- /autotools/m4/ax_prog_cc_for_build.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/m4/ax_prog_cc_for_build.m4 -------------------------------------------------------------------------------- /autotools/src/.deps/packcc.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /autotools/src/.deps/test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /autotools/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/src/Makefile -------------------------------------------------------------------------------- /autotools/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/src/Makefile.am -------------------------------------------------------------------------------- /autotools/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/src/Makefile.in -------------------------------------------------------------------------------- /autotools/src/packcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/autotools/src/packcc.c -------------------------------------------------------------------------------- /autotools/src/test.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | printf("Hello world!\n"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /autotools/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /cmake/modules/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/cmake/modules/FindCUnit.cmake -------------------------------------------------------------------------------- /compiler/gcc/Doption: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/compiler/gcc/Doption -------------------------------------------------------------------------------- /compiler/gcc/Doption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/compiler/gcc/Doption.c -------------------------------------------------------------------------------- /compiler/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/compiler/gcc/Makefile -------------------------------------------------------------------------------- /library/cJSON/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/cJSON/CMakeLists.txt -------------------------------------------------------------------------------- /library/cJSON/cJSON-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/cJSON/cJSON-example.c -------------------------------------------------------------------------------- /library/cJSON/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/cJSON/cJSON.c -------------------------------------------------------------------------------- /library/cJSON/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/cJSON/cJSON.h -------------------------------------------------------------------------------- /library/cJSON/cJSON.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/cJSON/cJSON.sh -------------------------------------------------------------------------------- /library/libarchive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/CMakeLists.txt -------------------------------------------------------------------------------- /library/libarchive/FindLibArchive.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/FindLibArchive.cmake -------------------------------------------------------------------------------- /library/libarchive/src/include/untar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/src/include/untar.h -------------------------------------------------------------------------------- /library/libarchive/src/lib/untar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/src/lib/untar.c -------------------------------------------------------------------------------- /library/libarchive/src/lib/untar.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/src/lib/untar.pc.in -------------------------------------------------------------------------------- /library/libarchive/src/lib/untarConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/src/lib/untarConfig.cmake.in -------------------------------------------------------------------------------- /library/libarchive/src/main/untar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/src/main/untar.c -------------------------------------------------------------------------------- /library/libarchive/src/test/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/src/test/FindCUnit.cmake -------------------------------------------------------------------------------- /library/libarchive/src/test/untar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libarchive/src/test/untar.c -------------------------------------------------------------------------------- /library/libcares/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcares/CMakeLists.txt -------------------------------------------------------------------------------- /library/libcares/FindCARES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcares/FindCARES.cmake -------------------------------------------------------------------------------- /library/libcares/src/ares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcares/src/ares.h -------------------------------------------------------------------------------- /library/libcares/src/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcares/src/dns.c -------------------------------------------------------------------------------- /library/libcares/src/dns2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcares/src/dns2.c -------------------------------------------------------------------------------- /library/libcurl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/CMakeLists.txt -------------------------------------------------------------------------------- /library/libcurl/FindCURL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/FindCURL.cmake -------------------------------------------------------------------------------- /library/libcurl/src/include/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/src/include/http.h -------------------------------------------------------------------------------- /library/libcurl/src/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/src/lib/http.c -------------------------------------------------------------------------------- /library/libcurl/src/lib/http.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/src/lib/http.pc.in -------------------------------------------------------------------------------- /library/libcurl/src/lib/httpConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/src/lib/httpConfig.cmake.in -------------------------------------------------------------------------------- /library/libcurl/src/main/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/src/main/http.c -------------------------------------------------------------------------------- /library/libcurl/src/test/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/src/test/FindCUnit.cmake -------------------------------------------------------------------------------- /library/libcurl/src/test/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libcurl/src/test/http.c -------------------------------------------------------------------------------- /library/libelf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libelf/CMakeLists.txt -------------------------------------------------------------------------------- /library/libelf/FindLIBELF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libelf/FindLIBELF.cmake -------------------------------------------------------------------------------- /library/libelf/src/check-if-has-dynamic-section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libelf/src/check-if-has-dynamic-section.c -------------------------------------------------------------------------------- /library/libgit2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/CMakeLists.txt -------------------------------------------------------------------------------- /library/libgit2/FindLibGit2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/FindLibGit2.cmake -------------------------------------------------------------------------------- /library/libgit2/git-branch-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-branch-list.c -------------------------------------------------------------------------------- /library/libgit2/git-clone-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-clone-simple.c -------------------------------------------------------------------------------- /library/libgit2/git-clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-clone.c -------------------------------------------------------------------------------- /library/libgit2/git-config-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-config-list.c -------------------------------------------------------------------------------- /library/libgit2/git-fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-fetch.c -------------------------------------------------------------------------------- /library/libgit2/git-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-init.c -------------------------------------------------------------------------------- /library/libgit2/git-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-open.c -------------------------------------------------------------------------------- /library/libgit2/git-pull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-pull.c -------------------------------------------------------------------------------- /library/libgit2/git-remote-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-remote-list.c -------------------------------------------------------------------------------- /library/libgit2/git-rev-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-rev-parse.c -------------------------------------------------------------------------------- /library/libgit2/git-status-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-status-list.c -------------------------------------------------------------------------------- /library/libgit2/git-submodule-update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-submodule-update.c -------------------------------------------------------------------------------- /library/libgit2/git-sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-sync.c -------------------------------------------------------------------------------- /library/libgit2/git-tag-name-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libgit2/git-tag-name-list.c -------------------------------------------------------------------------------- /library/libyaml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libyaml/CMakeLists.txt -------------------------------------------------------------------------------- /library/libyaml/FindLibYAML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libyaml/FindLibYAML.cmake -------------------------------------------------------------------------------- /library/libyaml/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libyaml/test.yml -------------------------------------------------------------------------------- /library/libyaml/yaml-based-formula-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/libyaml/yaml-based-formula-parser.c -------------------------------------------------------------------------------- /library/mbedTLS/AES/AES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/AES.java -------------------------------------------------------------------------------- /library/mbedTLS/AES/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/AES/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/AES/aesTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/aesTest.c -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/aes.c -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/aes.h -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/base16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/base16.c -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/base16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/base16.h -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/config.h -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/platform.c -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/platform.h -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/AES/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/AES/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/hmacTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/hmacTest.c -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/.!9834!config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/config.h -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/error.c -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/error.h -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/md.c -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/md.h -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/md_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/md_internal.h -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/platform.c -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/platform.h -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/sha256.c -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/sha256.h -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/HMAC/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/HMAC/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/MD5/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/MD5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/MD5/mbedtls/config.h: -------------------------------------------------------------------------------- 1 | #define MBEDTLS_MD5_C 2 | -------------------------------------------------------------------------------- /library/mbedTLS/MD5/mbedtls/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/mbedtls/md5.c -------------------------------------------------------------------------------- /library/mbedTLS/MD5/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/mbedtls/md5.h -------------------------------------------------------------------------------- /library/mbedTLS/MD5/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/MD5/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/MD5/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/MD5/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/MD5/md5Test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/md5Test -------------------------------------------------------------------------------- /library/mbedTLS/MD5/md5Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/MD5/md5Test.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/.!9834!config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/config.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/error.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/error.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/md.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/md.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/md_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/md_internal.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/pkcs5.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/platform.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/platform.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/sha256.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/sha256.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/pbkdf2Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/pbkdf2Test.c -------------------------------------------------------------------------------- /library/mbedTLS/PBKDF2/pbkdf2Test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/PBKDF2/pbkdf2Test.html -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/mbedtls/config.h: -------------------------------------------------------------------------------- 1 | #define MBEDTLS_RIPEMD160_C 2 | -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/mbedtls/ripemd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/mbedtls/ripemd160.c -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/mbedtls/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/mbedtls/ripemd160.h -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/RIPEMD-160/ripemd160Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/RIPEMD-160/ripemd160Test.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/mbedtls/config.h: -------------------------------------------------------------------------------- 1 | #define MBEDTLS_SHA1_C 2 | -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/mbedtls/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/mbedtls/sha1.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/mbedtls/sha1.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-1/sha1Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-1/sha1Test.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/mbedtls/config.h: -------------------------------------------------------------------------------- 1 | #define MBEDTLS_SHA256_C 2 | -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/mbedtls/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/mbedtls/sha256.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/mbedtls/sha256.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-224/sha224Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-224/sha224Test.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/mbedtls/config.h: -------------------------------------------------------------------------------- 1 | #define MBEDTLS_SHA256_C 2 | -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/mbedtls/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/mbedtls/sha256.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/mbedtls/sha256.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-256/sha256Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-256/sha256Test.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/mbedtls/config.h: -------------------------------------------------------------------------------- 1 | #define MBEDTLS_SHA512_C 2 | -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/mbedtls/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/mbedtls/sha512.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/mbedtls/sha512.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-384/sha384Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-384/sha384Test.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/Android.mk -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/Makefile -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/mbedtls/config.h: -------------------------------------------------------------------------------- 1 | #define MBEDTLS_SHA512_C 2 | -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/mbedtls/platform_util.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/mbedtls/platform_util.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/mbedtls/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/mbedtls/sha512.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/mbedtls/sha512.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/mbedtls/threading.c -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/mbedtls/threading.h -------------------------------------------------------------------------------- /library/mbedTLS/SHA-512/sha512Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/SHA-512/sha512Test.c -------------------------------------------------------------------------------- /library/mbedTLS/base64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/CMakeLists.txt -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/include/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/include/base64.h -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/lib/base64.c -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/lib/base64.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/lib/base64.pc.in -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/lib/base64_mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/lib/base64_mbedtls.c -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/lib/base64_mbedtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/lib/base64_mbedtls.h -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/main/base64-decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/main/base64-decode.c -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/main/base64-encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/main/base64-encode.c -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/test/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/test/FindCUnit.cmake -------------------------------------------------------------------------------- /library/mbedTLS/base64/src/test/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/mbedTLS/base64/src/test/base64.c -------------------------------------------------------------------------------- /library/openssl/SHA-256/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/openssl/SHA-256/CMakeLists.txt -------------------------------------------------------------------------------- /library/openssl/SHA-256/src/include/sha256sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/openssl/SHA-256/src/include/sha256sum.h -------------------------------------------------------------------------------- /library/openssl/SHA-256/src/lib/sha256sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/openssl/SHA-256/src/lib/sha256sum.c -------------------------------------------------------------------------------- /library/openssl/SHA-256/src/lib/sha256sum.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/openssl/SHA-256/src/lib/sha256sum.pc.in -------------------------------------------------------------------------------- /library/openssl/SHA-256/src/lib/sha256sumConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/openssl/SHA-256/src/lib/sha256sumConfig.cmake.in -------------------------------------------------------------------------------- /library/openssl/SHA-256/src/main/sha256sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/openssl/SHA-256/src/main/sha256sum.c -------------------------------------------------------------------------------- /library/openssl/SHA-256/src/test/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/openssl/SHA-256/src/test/FindCUnit.cmake -------------------------------------------------------------------------------- /library/openssl/SHA-256/src/test/sha256sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/openssl/SHA-256/src/test/sha256sum.c -------------------------------------------------------------------------------- /library/qrencode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/qrencode/CMakeLists.txt -------------------------------------------------------------------------------- /library/qrencode/FindLibQrencode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/qrencode/FindLibQrencode.cmake -------------------------------------------------------------------------------- /library/qrencode/qrencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/library/qrencode/qrencode.c -------------------------------------------------------------------------------- /standard/iso/comment/comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/comment/comment.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/99MultipTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/99MultipTable.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/array.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/array2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/array2.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/array3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/array3.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/array4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/array4.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/array5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/array5.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/array6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/array6.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/array7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/array7.c -------------------------------------------------------------------------------- /standard/iso/data-type/array/array8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/array/array8.c -------------------------------------------------------------------------------- /standard/iso/data-type/char/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/char/char.c -------------------------------------------------------------------------------- /standard/iso/data-type/char/char2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/char/char2.c -------------------------------------------------------------------------------- /standard/iso/data-type/char/chinese.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/char/chinese.c -------------------------------------------------------------------------------- /standard/iso/data-type/enum/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/enum/enum.c -------------------------------------------------------------------------------- /standard/iso/data-type/enum/enum2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/enum/enum2.c -------------------------------------------------------------------------------- /standard/iso/data-type/enum/enum3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/enum/enum3.c -------------------------------------------------------------------------------- /standard/iso/data-type/enum/enum4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/enum/enum4.c -------------------------------------------------------------------------------- /standard/iso/data-type/enum/enum5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/enum/enum5.c -------------------------------------------------------------------------------- /standard/iso/data-type/enum/enum6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/enum/enum6.c -------------------------------------------------------------------------------- /standard/iso/data-type/enum/enum7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/enum/enum7.c -------------------------------------------------------------------------------- /standard/iso/data-type/enum/enum8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/enum/enum8.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer.i -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer10.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer2.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer3.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer4.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer5.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer6.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer7.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer8.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/pointer9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/pointer9.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/swap.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/swap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/swap2.c -------------------------------------------------------------------------------- /standard/iso/data-type/pointer/swap3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/pointer/swap3.c -------------------------------------------------------------------------------- /standard/iso/data-type/struct/person.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/struct/person.c -------------------------------------------------------------------------------- /standard/iso/data-type/struct/person2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/struct/person2.c -------------------------------------------------------------------------------- /standard/iso/data-type/struct/person3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/struct/person3.c -------------------------------------------------------------------------------- /standard/iso/data-type/struct/person4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/struct/person4.c -------------------------------------------------------------------------------- /standard/iso/data-type/struct/person5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/struct/person5.c -------------------------------------------------------------------------------- /standard/iso/data-type/struct/person6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/struct/person6.c -------------------------------------------------------------------------------- /standard/iso/data-type/struct/person7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/struct/person7.c -------------------------------------------------------------------------------- /standard/iso/data-type/union/union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/union/union.c -------------------------------------------------------------------------------- /standard/iso/data-type/union/union2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/union/union2.c -------------------------------------------------------------------------------- /standard/iso/data-type/union/union3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/union/union3.c -------------------------------------------------------------------------------- /standard/iso/data-type/union/union4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/union/union4.c -------------------------------------------------------------------------------- /standard/iso/data-type/union/union5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/data-type/union/union5.c -------------------------------------------------------------------------------- /standard/iso/function/main1.c: -------------------------------------------------------------------------------- 1 | /* main函数的返回值测试 */ 2 | 3 | #include 4 | 5 | int main() { 6 | printf("I love you!\n"); 7 | return 100; 8 | } 9 | -------------------------------------------------------------------------------- /standard/iso/function/main2.c: -------------------------------------------------------------------------------- 1 | /* main函数的返回值测试 */ 2 | 3 | #include 4 | 5 | int main() { 6 | printf("me too!\n"); 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /standard/iso/function/main3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/function/main3.c -------------------------------------------------------------------------------- /standard/iso/function/main4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/function/main4.c -------------------------------------------------------------------------------- /standard/iso/header/assert.h/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/assert.h/assert.c -------------------------------------------------------------------------------- /standard/iso/header/assert.h/assert2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/assert.h/assert2.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isalnum.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isalpha.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isascii.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isblank.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/iscntrl.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isdigit.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isgraph.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/islower.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isprint.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/ispunct.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isspace.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isupper.c -------------------------------------------------------------------------------- /standard/iso/header/ctype.h/isxdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/ctype.h/isxdigit.c -------------------------------------------------------------------------------- /standard/iso/header/limits.h/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/limits.h/limits.c -------------------------------------------------------------------------------- /standard/iso/header/locale.h/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/locale.h/locale.c -------------------------------------------------------------------------------- /standard/iso/header/locale.h/localeconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/locale.h/localeconv.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/acos.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/asin.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/atan.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/atan2.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/ceil.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/cosh.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/exp.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/floor.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/fmod.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/log.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/math.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/modf.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/sin.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/sin2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/sin2.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/sinh.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/sqrt.c -------------------------------------------------------------------------------- /standard/iso/header/math.h/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/math.h/tanh.c -------------------------------------------------------------------------------- /standard/iso/header/setjmp.h/goto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/setjmp.h/goto.c -------------------------------------------------------------------------------- /standard/iso/header/setjmp.h/goto2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/setjmp.h/goto2.c -------------------------------------------------------------------------------- /standard/iso/header/setjmp.h/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/setjmp.h/setjmp.c -------------------------------------------------------------------------------- /standard/iso/header/setjmp.h/setjmp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/setjmp.h/setjmp2.c -------------------------------------------------------------------------------- /standard/iso/header/setjmp.h/setjmp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/setjmp.h/setjmp3.c -------------------------------------------------------------------------------- /standard/iso/header/signal.h/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/signal.h/signal.c -------------------------------------------------------------------------------- /standard/iso/header/stdarg.h/stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdarg.h/stdarg.c -------------------------------------------------------------------------------- /standard/iso/header/stdarg.h/stdarg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdarg.h/stdarg2.c -------------------------------------------------------------------------------- /standard/iso/header/stdbool.h/bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdbool.h/bool.c -------------------------------------------------------------------------------- /standard/iso/header/stdbool.h/bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdbool.h/bool.h -------------------------------------------------------------------------------- /standard/iso/header/stdbool.h/bool.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdbool.h/bool.s -------------------------------------------------------------------------------- /standard/iso/header/stdbool.h/bool2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdbool.h/bool2.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fgetc.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fgetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fgetpos.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fgets.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fprintf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fprintf/Makefile -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fprintf/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fprintf/test -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fprintf/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fprintf/test.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fputc.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fputs.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fread.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/freopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/freopen.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fseek.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/ftell.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/fwrite.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/getchar.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/gets.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/output.data: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/perror.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/putc.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/putchar.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/puts.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/remove.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/rename.c -------------------------------------------------------------------------------- /standard/iso/header/stdio.h/tmpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdio.h/tmpfile.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/abort.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/abort2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/abort2.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/abs.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/atexit.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/calloc.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/exit.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/exit2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/exit2.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/getenv.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/malloc.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/putenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/putenv.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/rand.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/realloc.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/realloc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/realloc2.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/setenv.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/stdlib.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/str2num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/str2num.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/system.c -------------------------------------------------------------------------------- /standard/iso/header/stdlib.h/unsetenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/stdlib.h/unsetenv.c -------------------------------------------------------------------------------- /standard/iso/header/string.h/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/string.h/strcat.c -------------------------------------------------------------------------------- /standard/iso/header/string.h/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/string.h/strcmp.c -------------------------------------------------------------------------------- /standard/iso/header/string.h/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/string.h/strcpy.c -------------------------------------------------------------------------------- /standard/iso/header/string.h/strerror_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/string.h/strerror_r.c -------------------------------------------------------------------------------- /standard/iso/header/string.h/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/string.h/strlen.c -------------------------------------------------------------------------------- /standard/iso/header/string.h/strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/string.h/strncat.c -------------------------------------------------------------------------------- /standard/iso/header/string.h/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/string.h/strncmp.c -------------------------------------------------------------------------------- /standard/iso/header/string.h/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/string.h/strncpy.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/asctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/asctime.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/clock.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/ctime.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/difftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/difftime.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/gmtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/gmtime.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/localtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/localtime.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/mktime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/mktime.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/strftime.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/time.c -------------------------------------------------------------------------------- /standard/iso/header/time.h/tzset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/header/time.h/tzset.c -------------------------------------------------------------------------------- /standard/iso/hello/conditioncompile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/conditioncompile.c -------------------------------------------------------------------------------- /standard/iso/hello/conditioncompile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/conditioncompile.i -------------------------------------------------------------------------------- /standard/iso/hello/conditioncompile2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/conditioncompile2.c -------------------------------------------------------------------------------- /standard/iso/hello/conditioncompile2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/conditioncompile2.i -------------------------------------------------------------------------------- /standard/iso/hello/conditioncompile3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/conditioncompile3.c -------------------------------------------------------------------------------- /standard/iso/hello/conditioncompile3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/conditioncompile3.i -------------------------------------------------------------------------------- /standard/iso/hello/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hello -------------------------------------------------------------------------------- /standard/iso/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hello.c -------------------------------------------------------------------------------- /standard/iso/hello/hello.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hello.i -------------------------------------------------------------------------------- /standard/iso/hello/hello.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hello.o -------------------------------------------------------------------------------- /standard/iso/hello/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hello.s -------------------------------------------------------------------------------- /standard/iso/hello/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hello2.c -------------------------------------------------------------------------------- /standard/iso/hello/hello2.h: -------------------------------------------------------------------------------- 1 | void yyxx(); 2 | 3 | -------------------------------------------------------------------------------- /standard/iso/hello/hello3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hello3.c -------------------------------------------------------------------------------- /standard/iso/hello/hello3.h: -------------------------------------------------------------------------------- 1 | void xx(); 2 | -------------------------------------------------------------------------------- /standard/iso/hello/hong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hong.c -------------------------------------------------------------------------------- /standard/iso/hello/hong.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/hello/hong.i -------------------------------------------------------------------------------- /standard/iso/macro/build_in_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/macro/build_in_macro.c -------------------------------------------------------------------------------- /standard/iso/number/float/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/float/float.c -------------------------------------------------------------------------------- /standard/iso/number/float/float2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/float/float2.c -------------------------------------------------------------------------------- /standard/iso/number/float/float3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/float/float3.c -------------------------------------------------------------------------------- /standard/iso/number/float/float4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/float/float4.c -------------------------------------------------------------------------------- /standard/iso/number/int/integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/int/integer.c -------------------------------------------------------------------------------- /standard/iso/number/int/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/int/integer.h -------------------------------------------------------------------------------- /standard/iso/number/int/integer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/int/integer2.c -------------------------------------------------------------------------------- /standard/iso/number/int/integer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/int/integer3.c -------------------------------------------------------------------------------- /standard/iso/number/int/integer4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/int/integer4.c -------------------------------------------------------------------------------- /standard/iso/number/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/number.c -------------------------------------------------------------------------------- /standard/iso/number/number2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/number/number2.c -------------------------------------------------------------------------------- /standard/iso/operator/sizeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/operator/sizeof.c -------------------------------------------------------------------------------- /standard/iso/operator/sizeof2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/operator/sizeof2.c -------------------------------------------------------------------------------- /standard/iso/operator/sizeof3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/operator/sizeof3.c -------------------------------------------------------------------------------- /standard/iso/operator/sizeof4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/operator/sizeof4.c -------------------------------------------------------------------------------- /standard/iso/operator/typedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/operator/typedef.c -------------------------------------------------------------------------------- /standard/iso/variable/__thread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/__thread/Makefile -------------------------------------------------------------------------------- /standard/iso/variable/__thread/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/__thread/test.c -------------------------------------------------------------------------------- /standard/iso/variable/auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/auto.c -------------------------------------------------------------------------------- /standard/iso/variable/extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/extern.c -------------------------------------------------------------------------------- /standard/iso/variable/extern2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/extern2.c -------------------------------------------------------------------------------- /standard/iso/variable/local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/local.c -------------------------------------------------------------------------------- /standard/iso/variable/other.c: -------------------------------------------------------------------------------- 1 | #include"other.h" 2 | 3 | void func() { 4 | extern a; 5 | a = 20; 6 | } 7 | -------------------------------------------------------------------------------- /standard/iso/variable/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/other.h -------------------------------------------------------------------------------- /standard/iso/variable/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/register.c -------------------------------------------------------------------------------- /standard/iso/variable/static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/static.c -------------------------------------------------------------------------------- /standard/iso/variable/static2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/iso/variable/static2.c -------------------------------------------------------------------------------- /standard/linux/eventpool.h/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/linux/eventpool.h/CMakeLists.txt -------------------------------------------------------------------------------- /standard/linux/eventpool.h/eventpooltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/linux/eventpool.h/eventpooltest.c -------------------------------------------------------------------------------- /standard/posix/dlfcn.h/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/dlfcn.h/Makefile -------------------------------------------------------------------------------- /standard/posix/dlfcn.h/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/dlfcn.h/add.c -------------------------------------------------------------------------------- /standard/posix/dlfcn.h/compile_time_do_not_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/dlfcn.h/compile_time_do_not_link.c -------------------------------------------------------------------------------- /standard/posix/dlfcn.h/compile_time_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/dlfcn.h/compile_time_link.c -------------------------------------------------------------------------------- /standard/posix/examples/socket/AF_INET/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/examples/socket/AF_INET/client.c -------------------------------------------------------------------------------- /standard/posix/examples/socket/AF_INET/iplookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/examples/socket/AF_INET/iplookup.c -------------------------------------------------------------------------------- /standard/posix/examples/socket/AF_INET/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/examples/socket/AF_INET/server.c -------------------------------------------------------------------------------- /standard/posix/examples/socket/AF_LOCAL/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/examples/socket/AF_LOCAL/client.c -------------------------------------------------------------------------------- /standard/posix/examples/socket/AF_LOCAL/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/examples/socket/AF_LOCAL/server.c -------------------------------------------------------------------------------- /standard/posix/langinfo.h/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/langinfo.h/Makefile -------------------------------------------------------------------------------- /standard/posix/langinfo.h/langinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/langinfo.h/langinfo.c -------------------------------------------------------------------------------- /standard/posix/pthread.h/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/pthread.h/thread.c -------------------------------------------------------------------------------- /standard/posix/pthread.h/thread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/pthread.h/thread2.c -------------------------------------------------------------------------------- /standard/posix/pthread.h/thread3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/pthread.h/thread3.c -------------------------------------------------------------------------------- /standard/posix/pthread.h/thread4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/pthread.h/thread4.c -------------------------------------------------------------------------------- /standard/posix/spawn.h/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/spawn.h/Makefile -------------------------------------------------------------------------------- /standard/posix/spawn.h/posix_spawn_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/spawn.h/posix_spawn_test.c -------------------------------------------------------------------------------- /standard/posix/sys/stat.h/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/sys/stat.h/Makefile -------------------------------------------------------------------------------- /standard/posix/sys/stat.h/stat64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/sys/stat.h/stat64 -------------------------------------------------------------------------------- /standard/posix/sys/stat.h/stat64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/sys/stat.h/stat64.c -------------------------------------------------------------------------------- /standard/posix/sys/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/sys/syscall.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/_exit.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/chdir.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/exec.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/exec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/exec2.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/exec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/exec3.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/fork.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/getcwd.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/getopt.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/getpgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/getpgid.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/getpid.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/getppid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/getppid.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/getuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/getuid.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/gid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/gid.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/kill.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/pathconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/pathconf.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/pipe.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/uid.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/vfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/vfork.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/wait.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/wait2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/wait2.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/wait3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/wait3.c -------------------------------------------------------------------------------- /standard/posix/unistd.h/wait4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/standard/posix/unistd.h/wait4.c -------------------------------------------------------------------------------- /thirdpart/include/CUnit/Automated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/Automated.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/Basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/Basic.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/CUError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/CUError.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/CUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/CUnit.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/CUnit_intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/CUnit_intl.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/Console.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/MyMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/MyMem.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/TestDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/TestDB.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/TestRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/TestRun.h -------------------------------------------------------------------------------- /thirdpart/include/CUnit/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/thirdpart/include/CUnit/Util.h -------------------------------------------------------------------------------- /utils/self_exe_path/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/self_exe_path/CMakeLists.txt -------------------------------------------------------------------------------- /utils/self_exe_path/getexepath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/self_exe_path/getexepath.c -------------------------------------------------------------------------------- /utils/self_exe_path/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/self_exe_path/main.c -------------------------------------------------------------------------------- /utils/self_exe_path/self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/self_exe_path/self.c -------------------------------------------------------------------------------- /utils/self_exe_path/self.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/self_exe_path/self.h -------------------------------------------------------------------------------- /utils/sysinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/CMakeLists.txt -------------------------------------------------------------------------------- /utils/sysinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/README.md -------------------------------------------------------------------------------- /utils/sysinfo/src/lib/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/src/lib/sysinfo.c -------------------------------------------------------------------------------- /utils/sysinfo/src/lib/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/src/lib/sysinfo.h -------------------------------------------------------------------------------- /utils/sysinfo/src/lib/sysinfo.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/src/lib/sysinfo.pc.in -------------------------------------------------------------------------------- /utils/sysinfo/src/lib/sysinfoConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/src/lib/sysinfoConfig.cmake.in -------------------------------------------------------------------------------- /utils/sysinfo/src/main/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/src/main/sysinfo.c -------------------------------------------------------------------------------- /utils/sysinfo/src/test/FindCUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/src/test/FindCUnit.cmake -------------------------------------------------------------------------------- /utils/sysinfo/src/test/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leleliu008/C-examples/HEAD/utils/sysinfo/src/test/sysinfo.c --------------------------------------------------------------------------------