globus_connect_gridftp_server  16.0
quickxorhash.h
1 #ifndef QUICKXORHASH_H
2 #define QUICKXORHASH_H
3 
4 #include <stdint.h>
5 
6 typedef struct qxhash qxhash;
7 
8 qxhash *qxh_new(void);
9 void qxh_update(qxhash *, uint8_t *, size_t);
10 char * qxh_finalize(qxhash *);
11 void qxh_free(qxhash *);
12 
13 #endif /* QUICKXORHASH_H */