mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
14 lines
193 B
C
14 lines
193 B
C
|
|
const char *tor_get_digests(void);
|
|
|
|
/** Return a string describing the digest of the source files in src/or/
|
|
*/
|
|
const char *
|
|
tor_get_digests(void)
|
|
{
|
|
return ""
|
|
#include "or_sha1.i"
|
|
;
|
|
}
|
|
|