├── .gitignore ├── LICENSE ├── README.md ├── algorithm ├── README.md ├── algorithm.c └── algorithm.h ├── array ├── README.md ├── array.c └── array.h ├── bitset ├── README.md ├── bitset.c └── bitset.h ├── compile.py ├── config ├── README.md ├── config.c └── config.h ├── crypto ├── README.md ├── crypto.c └── crypto.h ├── csv ├── README.md ├── csv.c └── csv.h ├── date ├── README.md ├── date.c └── date.h ├── dependency ├── include │ └── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cmp.h │ │ ├── cmp_util.h │ │ ├── cmperr.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── configuration.h │ │ ├── conftypes.h │ │ ├── core.h │ │ ├── core_dispatch.h │ │ ├── core_names.h │ │ ├── core_object.h │ │ ├── crmf.h │ │ ├── crmferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── cryptoerr_legacy.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── decoder.h │ │ ├── decodererr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── e_ostime.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── encoder.h │ │ ├── encodererr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── ess.h │ │ ├── esserr.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── fips_names.h │ │ ├── fipskey.h │ │ ├── hmac.h │ │ ├── hpke.h │ │ ├── http.h │ │ ├── httperr.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── macros.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── param_build.h │ │ ├── params.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── prov_ssl.h │ │ ├── proverr.h │ │ ├── provider.h │ │ ├── quic.h │ │ ├── rand.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── self_test.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── sslerr_legacy.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── thread.h │ │ ├── tls1.h │ │ ├── trace.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── types.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h └── lib │ ├── libcrypto.a │ ├── libcrypto.dll.a │ ├── libcryptohi.dll.a │ ├── libssl.a │ ├── libssl.dll.a │ └── libssl3.dll.a ├── deque ├── README.md ├── deque.c └── deque.h ├── dir ├── README.md ├── dir.c └── dir.h ├── encoding ├── README.md ├── encoding.c └── encoding.h ├── file_io ├── README.md ├── file_reader.c ├── file_reader.h ├── file_writer.c └── file_writer.h ├── fmt ├── README.md ├── fmt.c └── fmt.h ├── forward_list ├── README.md ├── forward_list.c └── forward_list.h ├── json ├── README.md ├── json.c └── json.h ├── list ├── README.md ├── list.c └── list.h ├── main.c ├── map ├── README.md ├── map.c └── map.h ├── numbers ├── README.md └── numbers.h ├── numeric ├── README.md ├── numeric.c └── numeric.h ├── priority_queue ├── README.md ├── priority_queue.c └── priority_queue.h ├── queue ├── README.md ├── queue.c └── queue.h ├── sources ├── config.ini ├── config_with_comments.ini ├── converted_json.json ├── data.txt ├── destination_file.txt ├── dynamic_config.ini ├── dynamic_config_modified.ini ├── encrypted_config.ini ├── example_unicode.txt ├── filtered_books.json ├── json_example.json ├── json_modified.json ├── locked_file.txt ├── merged_config.ini ├── merged_file.csv ├── merged_json.json ├── modified_config.ini ├── modified_json.json ├── output.csv ├── output.txt ├── output_json_example.json ├── test_10.csv ├── test_100.csv ├── test_json.json ├── text_uni.txt ├── updated_file.csv └── users_1k.json ├── span ├── README.md ├── span.c └── span.h ├── stack ├── README.md ├── stack.c └── stack.h ├── string ├── README.md ├── string.c └── string.h ├── time ├── README.md ├── time.c └── time.h ├── tuple ├── README.md ├── tuple.c └── tuple.h └── vector ├── README.md ├── vector.c └── vector.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/README.md -------------------------------------------------------------------------------- /algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/algorithm/README.md -------------------------------------------------------------------------------- /algorithm/algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/algorithm/algorithm.c -------------------------------------------------------------------------------- /algorithm/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/algorithm/algorithm.h -------------------------------------------------------------------------------- /array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/array/README.md -------------------------------------------------------------------------------- /array/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/array/array.c -------------------------------------------------------------------------------- /array/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/array/array.h -------------------------------------------------------------------------------- /bitset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/bitset/README.md -------------------------------------------------------------------------------- /bitset/bitset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/bitset/bitset.c -------------------------------------------------------------------------------- /bitset/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/bitset/bitset.h -------------------------------------------------------------------------------- /compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/compile.py -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/config/README.md -------------------------------------------------------------------------------- /config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/config/config.c -------------------------------------------------------------------------------- /config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/config/config.h -------------------------------------------------------------------------------- /crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/crypto/README.md -------------------------------------------------------------------------------- /crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/crypto/crypto.c -------------------------------------------------------------------------------- /crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/crypto/crypto.h -------------------------------------------------------------------------------- /csv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/csv/README.md -------------------------------------------------------------------------------- /csv/csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/csv/csv.c -------------------------------------------------------------------------------- /csv/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/csv/csv.h -------------------------------------------------------------------------------- /date/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/date/README.md -------------------------------------------------------------------------------- /date/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/date/date.c -------------------------------------------------------------------------------- /date/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/date/date.h -------------------------------------------------------------------------------- /dependency/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/aes.h -------------------------------------------------------------------------------- /dependency/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/asn1.h -------------------------------------------------------------------------------- /dependency/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /dependency/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/asn1err.h -------------------------------------------------------------------------------- /dependency/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/asn1t.h -------------------------------------------------------------------------------- /dependency/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/async.h -------------------------------------------------------------------------------- /dependency/include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/bio.h -------------------------------------------------------------------------------- /dependency/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/bioerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/blowfish.h -------------------------------------------------------------------------------- /dependency/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/bn.h -------------------------------------------------------------------------------- /dependency/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/bnerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/buffer.h -------------------------------------------------------------------------------- /dependency/include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/buffererr.h -------------------------------------------------------------------------------- /dependency/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/camellia.h -------------------------------------------------------------------------------- /dependency/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cast.h -------------------------------------------------------------------------------- /dependency/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cmac.h -------------------------------------------------------------------------------- /dependency/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cmp.h -------------------------------------------------------------------------------- /dependency/include/openssl/cmp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cmp_util.h -------------------------------------------------------------------------------- /dependency/include/openssl/cmperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cmperr.h -------------------------------------------------------------------------------- /dependency/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cms.h -------------------------------------------------------------------------------- /dependency/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cmserr.h -------------------------------------------------------------------------------- /dependency/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/comp.h -------------------------------------------------------------------------------- /dependency/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/comperr.h -------------------------------------------------------------------------------- /dependency/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/conf.h -------------------------------------------------------------------------------- /dependency/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/conf_api.h -------------------------------------------------------------------------------- /dependency/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/conferr.h -------------------------------------------------------------------------------- /dependency/include/openssl/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/configuration.h -------------------------------------------------------------------------------- /dependency/include/openssl/conftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/conftypes.h -------------------------------------------------------------------------------- /dependency/include/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/core.h -------------------------------------------------------------------------------- /dependency/include/openssl/core_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/core_dispatch.h -------------------------------------------------------------------------------- /dependency/include/openssl/core_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/core_names.h -------------------------------------------------------------------------------- /dependency/include/openssl/core_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/core_object.h -------------------------------------------------------------------------------- /dependency/include/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/crmf.h -------------------------------------------------------------------------------- /dependency/include/openssl/crmferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/crmferr.h -------------------------------------------------------------------------------- /dependency/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/crypto.h -------------------------------------------------------------------------------- /dependency/include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/cryptoerr_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cryptoerr_legacy.h -------------------------------------------------------------------------------- /dependency/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ct.h -------------------------------------------------------------------------------- /dependency/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/cterr.h -------------------------------------------------------------------------------- /dependency/include/openssl/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/decoder.h -------------------------------------------------------------------------------- /dependency/include/openssl/decodererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/decodererr.h -------------------------------------------------------------------------------- /dependency/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/des.h -------------------------------------------------------------------------------- /dependency/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/dh.h -------------------------------------------------------------------------------- /dependency/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/dherr.h -------------------------------------------------------------------------------- /dependency/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/dsa.h -------------------------------------------------------------------------------- /dependency/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/dtls1.h -------------------------------------------------------------------------------- /dependency/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/e_os2.h -------------------------------------------------------------------------------- /dependency/include/openssl/e_ostime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/e_ostime.h -------------------------------------------------------------------------------- /dependency/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /dependency/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ec.h -------------------------------------------------------------------------------- /dependency/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ecdh.h -------------------------------------------------------------------------------- /dependency/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /dependency/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ecerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/encoder.h -------------------------------------------------------------------------------- /dependency/include/openssl/encodererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/encodererr.h -------------------------------------------------------------------------------- /dependency/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/engine.h -------------------------------------------------------------------------------- /dependency/include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/engineerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/err.h -------------------------------------------------------------------------------- /dependency/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ess.h -------------------------------------------------------------------------------- /dependency/include/openssl/esserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/esserr.h -------------------------------------------------------------------------------- /dependency/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/evp.h -------------------------------------------------------------------------------- /dependency/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/evperr.h -------------------------------------------------------------------------------- /dependency/include/openssl/fips_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/fips_names.h -------------------------------------------------------------------------------- /dependency/include/openssl/fipskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/fipskey.h -------------------------------------------------------------------------------- /dependency/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/hmac.h -------------------------------------------------------------------------------- /dependency/include/openssl/hpke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/hpke.h -------------------------------------------------------------------------------- /dependency/include/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/http.h -------------------------------------------------------------------------------- /dependency/include/openssl/httperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/httperr.h -------------------------------------------------------------------------------- /dependency/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/idea.h -------------------------------------------------------------------------------- /dependency/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/kdf.h -------------------------------------------------------------------------------- /dependency/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/kdferr.h -------------------------------------------------------------------------------- /dependency/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/lhash.h -------------------------------------------------------------------------------- /dependency/include/openssl/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/macros.h -------------------------------------------------------------------------------- /dependency/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/md2.h -------------------------------------------------------------------------------- /dependency/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/md4.h -------------------------------------------------------------------------------- /dependency/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/md5.h -------------------------------------------------------------------------------- /dependency/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/mdc2.h -------------------------------------------------------------------------------- /dependency/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/modes.h -------------------------------------------------------------------------------- /dependency/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /dependency/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/objects.h -------------------------------------------------------------------------------- /dependency/include/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/objectserr.h -------------------------------------------------------------------------------- /dependency/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ocsp.h -------------------------------------------------------------------------------- /dependency/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /dependency/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /dependency/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/opensslv.h -------------------------------------------------------------------------------- /dependency/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /dependency/include/openssl/param_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/param_build.h -------------------------------------------------------------------------------- /dependency/include/openssl/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/params.h -------------------------------------------------------------------------------- /dependency/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/pem.h -------------------------------------------------------------------------------- /dependency/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/pem2.h -------------------------------------------------------------------------------- /dependency/include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/pemerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /dependency/include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /dependency/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /dependency/include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /dependency/include/openssl/prov_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/prov_ssl.h -------------------------------------------------------------------------------- /dependency/include/openssl/proverr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/proverr.h -------------------------------------------------------------------------------- /dependency/include/openssl/provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/provider.h -------------------------------------------------------------------------------- /dependency/include/openssl/quic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/quic.h -------------------------------------------------------------------------------- /dependency/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/rand.h -------------------------------------------------------------------------------- /dependency/include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/randerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/rc2.h -------------------------------------------------------------------------------- /dependency/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/rc4.h -------------------------------------------------------------------------------- /dependency/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/rc5.h -------------------------------------------------------------------------------- /dependency/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ripemd.h -------------------------------------------------------------------------------- /dependency/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/rsa.h -------------------------------------------------------------------------------- /dependency/include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/safestack.h -------------------------------------------------------------------------------- /dependency/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/seed.h -------------------------------------------------------------------------------- /dependency/include/openssl/self_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/self_test.h -------------------------------------------------------------------------------- /dependency/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/sha.h -------------------------------------------------------------------------------- /dependency/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/srp.h -------------------------------------------------------------------------------- /dependency/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/srtp.h -------------------------------------------------------------------------------- /dependency/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ssl.h -------------------------------------------------------------------------------- /dependency/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ssl2.h -------------------------------------------------------------------------------- /dependency/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ssl3.h -------------------------------------------------------------------------------- /dependency/include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/sslerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/sslerr_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/sslerr_legacy.h -------------------------------------------------------------------------------- /dependency/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/stack.h -------------------------------------------------------------------------------- /dependency/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/store.h -------------------------------------------------------------------------------- /dependency/include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/storeerr.h -------------------------------------------------------------------------------- /dependency/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/symhacks.h -------------------------------------------------------------------------------- /dependency/include/openssl/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/thread.h -------------------------------------------------------------------------------- /dependency/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/tls1.h -------------------------------------------------------------------------------- /dependency/include/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/trace.h -------------------------------------------------------------------------------- /dependency/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ts.h -------------------------------------------------------------------------------- /dependency/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/tserr.h -------------------------------------------------------------------------------- /dependency/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/txt_db.h -------------------------------------------------------------------------------- /dependency/include/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/types.h -------------------------------------------------------------------------------- /dependency/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/ui.h -------------------------------------------------------------------------------- /dependency/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/uierr.h -------------------------------------------------------------------------------- /dependency/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /dependency/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/x509.h -------------------------------------------------------------------------------- /dependency/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /dependency/include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/x509err.h -------------------------------------------------------------------------------- /dependency/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/x509v3.h -------------------------------------------------------------------------------- /dependency/include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /dependency/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/lib/libcrypto.a -------------------------------------------------------------------------------- /dependency/lib/libcrypto.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/lib/libcrypto.dll.a -------------------------------------------------------------------------------- /dependency/lib/libcryptohi.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/lib/libcryptohi.dll.a -------------------------------------------------------------------------------- /dependency/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/lib/libssl.a -------------------------------------------------------------------------------- /dependency/lib/libssl.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/lib/libssl.dll.a -------------------------------------------------------------------------------- /dependency/lib/libssl3.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dependency/lib/libssl3.dll.a -------------------------------------------------------------------------------- /deque/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/deque/README.md -------------------------------------------------------------------------------- /deque/deque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/deque/deque.c -------------------------------------------------------------------------------- /deque/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/deque/deque.h -------------------------------------------------------------------------------- /dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dir/README.md -------------------------------------------------------------------------------- /dir/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dir/dir.c -------------------------------------------------------------------------------- /dir/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/dir/dir.h -------------------------------------------------------------------------------- /encoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/encoding/README.md -------------------------------------------------------------------------------- /encoding/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/encoding/encoding.c -------------------------------------------------------------------------------- /encoding/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/encoding/encoding.h -------------------------------------------------------------------------------- /file_io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/file_io/README.md -------------------------------------------------------------------------------- /file_io/file_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/file_io/file_reader.c -------------------------------------------------------------------------------- /file_io/file_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/file_io/file_reader.h -------------------------------------------------------------------------------- /file_io/file_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/file_io/file_writer.c -------------------------------------------------------------------------------- /file_io/file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/file_io/file_writer.h -------------------------------------------------------------------------------- /fmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/fmt/README.md -------------------------------------------------------------------------------- /fmt/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/fmt/fmt.c -------------------------------------------------------------------------------- /fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/fmt/fmt.h -------------------------------------------------------------------------------- /forward_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/forward_list/README.md -------------------------------------------------------------------------------- /forward_list/forward_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/forward_list/forward_list.c -------------------------------------------------------------------------------- /forward_list/forward_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/forward_list/forward_list.h -------------------------------------------------------------------------------- /json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/json/README.md -------------------------------------------------------------------------------- /json/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/json/json.c -------------------------------------------------------------------------------- /json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/json/json.h -------------------------------------------------------------------------------- /list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/list/README.md -------------------------------------------------------------------------------- /list/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/list/list.c -------------------------------------------------------------------------------- /list/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/list/list.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/main.c -------------------------------------------------------------------------------- /map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/map/README.md -------------------------------------------------------------------------------- /map/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/map/map.c -------------------------------------------------------------------------------- /map/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/map/map.h -------------------------------------------------------------------------------- /numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/numbers/README.md -------------------------------------------------------------------------------- /numbers/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/numbers/numbers.h -------------------------------------------------------------------------------- /numeric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/numeric/README.md -------------------------------------------------------------------------------- /numeric/numeric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/numeric/numeric.c -------------------------------------------------------------------------------- /numeric/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/numeric/numeric.h -------------------------------------------------------------------------------- /priority_queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/priority_queue/README.md -------------------------------------------------------------------------------- /priority_queue/priority_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/priority_queue/priority_queue.c -------------------------------------------------------------------------------- /priority_queue/priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/priority_queue/priority_queue.h -------------------------------------------------------------------------------- /queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/queue/README.md -------------------------------------------------------------------------------- /queue/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/queue/queue.c -------------------------------------------------------------------------------- /queue/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/queue/queue.h -------------------------------------------------------------------------------- /sources/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/config.ini -------------------------------------------------------------------------------- /sources/config_with_comments.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/config_with_comments.ini -------------------------------------------------------------------------------- /sources/converted_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/converted_json.json -------------------------------------------------------------------------------- /sources/data.txt: -------------------------------------------------------------------------------- 1 | 27 2 | 19.36 3 | امین -------------------------------------------------------------------------------- /sources/destination_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/destination_file.txt -------------------------------------------------------------------------------- /sources/dynamic_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/dynamic_config.ini -------------------------------------------------------------------------------- /sources/dynamic_config_modified.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/dynamic_config_modified.ini -------------------------------------------------------------------------------- /sources/encrypted_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/encrypted_config.ini -------------------------------------------------------------------------------- /sources/example_unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/example_unicode.txt -------------------------------------------------------------------------------- /sources/filtered_books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/filtered_books.json -------------------------------------------------------------------------------- /sources/json_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/json_example.json -------------------------------------------------------------------------------- /sources/json_modified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/json_modified.json -------------------------------------------------------------------------------- /sources/locked_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/locked_file.txt -------------------------------------------------------------------------------- /sources/merged_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/merged_config.ini -------------------------------------------------------------------------------- /sources/merged_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/merged_file.csv -------------------------------------------------------------------------------- /sources/merged_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/merged_json.json -------------------------------------------------------------------------------- /sources/modified_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/modified_config.ini -------------------------------------------------------------------------------- /sources/modified_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/modified_json.json -------------------------------------------------------------------------------- /sources/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/output.csv -------------------------------------------------------------------------------- /sources/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/output.txt -------------------------------------------------------------------------------- /sources/output_json_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/output_json_example.json -------------------------------------------------------------------------------- /sources/test_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/test_10.csv -------------------------------------------------------------------------------- /sources/test_100.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/test_100.csv -------------------------------------------------------------------------------- /sources/test_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/test_json.json -------------------------------------------------------------------------------- /sources/text_uni.txt: -------------------------------------------------------------------------------- 1 | سلام به همه دوستان 2 | -------------------------------------------------------------------------------- /sources/updated_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/updated_file.csv -------------------------------------------------------------------------------- /sources/users_1k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/sources/users_1k.json -------------------------------------------------------------------------------- /span/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/span/README.md -------------------------------------------------------------------------------- /span/span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/span/span.c -------------------------------------------------------------------------------- /span/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/span/span.h -------------------------------------------------------------------------------- /stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/stack/README.md -------------------------------------------------------------------------------- /stack/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/stack/stack.c -------------------------------------------------------------------------------- /stack/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/stack/stack.h -------------------------------------------------------------------------------- /string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/string/README.md -------------------------------------------------------------------------------- /string/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/string/string.c -------------------------------------------------------------------------------- /string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/string/string.h -------------------------------------------------------------------------------- /time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/time/README.md -------------------------------------------------------------------------------- /time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/time/time.c -------------------------------------------------------------------------------- /time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/time/time.h -------------------------------------------------------------------------------- /tuple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/tuple/README.md -------------------------------------------------------------------------------- /tuple/tuple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/tuple/tuple.c -------------------------------------------------------------------------------- /tuple/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/tuple/tuple.h -------------------------------------------------------------------------------- /vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/vector/README.md -------------------------------------------------------------------------------- /vector/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/vector/vector.c -------------------------------------------------------------------------------- /vector/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadaf/c_std/HEAD/vector/vector.h --------------------------------------------------------------------------------