mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-04-21 12:59:35 +00:00
[PR #580] [MERGED] [enhancement] formatted and added Hash directory to cmake
#1011
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/580
Author: @kvedala
Created: 7/22/2020
Status: ✅ Merged
Merged: 7/29/2020
Merged by: @kvedala
Base:
master← Head:hash📝 Commits (10+)
63a605eadded hash folder to CMAKE build138400esplit sdbm code from hash.c to independent programaf6a872update readme filed6dc6dfdocs + vartype fix9c5dae4split djb2 code from hash.c to independent program0bd33dcfix function referenceec3488dsplit xor8 code from hash.c to independent program3674997split adler32 code from hash.c to independent programb2abbferemove additional authorc3b44aasplit crc32 code from hash.c to independent program📊 Changes
13 files changed (+295 additions, -157 deletions)
View changed files
📝
.clang-tidy(+1 -1)📝
CMakeLists.txt(+1 -0)📝
DIRECTORY.md(+5 -3)➕
hash/CMakeLists.txt(+20 -0)📝
hash/README.md(+1 -2)➖
hash/hash.c(+0 -82)➖
hash/hash.h(+0 -49)➕
hash/hash_adler32.c(+54 -0)➕
hash/hash_crc32.c(+62 -0)➕
hash/hash_djb2.c(+50 -0)➕
hash/hash_sdbm.c(+50 -0)➕
hash/hash_xor8.c(+51 -0)➖
hash/test_program.c(+0 -20)📄 Description
Description of Change
Programs in
hashdirectory were not documented and present as one file. This PR splits the individual functions to individual files and enables CMAKE on the repo.References
Checklist
Notes:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.