commit 03c6739cb3e963a1213b2306bb97a5d6392263ab from: Stefan Sperling date: Mon Feb 12 22:16:53 2018 UTC move got_sha1.h to private lib directory commit - 38d42f420a1cb73c623fcda9776c1f679cb8dcb1 commit + 03c6739cb3e963a1213b2306bb97a5d6392263ab blob - df56c0dec9b4f886d0894e14ad05aea9fde11040 (mode 644) blob + /dev/null --- include/got_sha1.h +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright (c) 2018 Stefan Sperling - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -int got_parse_sha1_digest(uint8_t *, const char *); -char *got_sha1_digest_to_str(const uint8_t *, char *, size_t); blob - /dev/null blob + df56c0dec9b4f886d0894e14ad05aea9fde11040 (mode 644) --- /dev/null +++ lib/got_sha1.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2018 Stefan Sperling + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +int got_parse_sha1_digest(uint8_t *, const char *); +char *got_sha1_digest_to_str(const uint8_t *, char *, size_t); blob - 20ffaffe8820aaade6b2ea3112dfe204be331753 blob + 85c24b2099d9153a55872a1342f09e50053b2942 --- regress/repository/repository_test.c +++ regress/repository/repository_test.c @@ -27,7 +27,6 @@ #include "got_object.h" #include "got_refs.h" #include "got_repository.h" -#include "got_sha1.h" #include "got_diff.h" #define GOT_REPO_PATH "../../../"