~mordred/libmemcached/fix-weird-link

« back to all changes in this revision

Viewing changes to libhashkit/common.h

  • Committer: Brian Aker
  • Date: 2009-12-17 17:28:30 UTC
  • Revision ID: brian@gir.tangent.org-20091217172830-h298d0m4x2wxmqlo
Adding back libhashkit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* HashKit
 
2
 * Copyright (C) 2009 Brian Aker
 
3
 * All rights reserved.
 
4
 *
 
5
 * Use and distribution licensed under the BSD license.  See
 
6
 * the COPYING file in the parent directory for full text.
 
7
 */
 
8
 
 
9
/**
 
10
 * @file
 
11
 * @brief System Include Files
 
12
 */
 
13
 
 
14
#ifndef HASHKIT_COMMON_H
 
15
#define HASHKIT_COMMON_H
 
16
 
 
17
#include "config.h"
 
18
 
 
19
#include <assert.h>
 
20
#include <errno.h>
 
21
#include <stdio.h>
 
22
#include <stdlib.h>
 
23
#include <math.h>
 
24
 
 
25
#include "hashkit.h"
 
26
 
 
27
HASHKIT_LOCAL
 
28
void md5_signature(const unsigned char *key, unsigned int length, unsigned char *result);
 
29
 
 
30
HASHKIT_LOCAL
 
31
int update_continuum(hashkit_st *hashkit);
 
32
 
 
33
#endif /* HASHKIT_COMMON_H */