summaryrefslogtreecommitdiff
path: root/src/etag.h
blob: 9460ce1f9a9ea4afda283d3158442f58299d5961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef ETAG_H
#define ETAG_H
#include "first.h"

#include "buffer.h"

struct stat;            /* declaration */

typedef enum { ETAG_USE_INODE = 1, ETAG_USE_MTIME = 2, ETAG_USE_SIZE = 4 } etag_flags_t;

int etag_is_equal(const buffer *etag, const char *matches, int weak_ok);
int etag_create(buffer *etag, const struct stat *st, etag_flags_t flags);
int etag_mutate(buffer *mut, buffer *etag);


#endif