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

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

#include "buffer.h"

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


#endif