mirror of
https://github.com/reactos/ccache.git
synced 2025-01-10 13:30:13 +00:00
11 lines
228 B
C
11 lines
228 B
C
#ifndef COMMENTS_H
|
|
#define COMMENTS_H
|
|
|
|
#include "mdfour.h"
|
|
|
|
void hash_string_ignoring_comments(
|
|
struct mdfour *hash, const char *str, size_t len);
|
|
int hash_file_ignoring_comments(struct mdfour *hash, const char *path);
|
|
|
|
#endif
|