2014-09-16 13:09:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Kaspar Schleiser
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
2010-09-22 17:25:19 +02:00
|
|
|
#ifndef __HASH_STRING_H
|
2013-06-22 17:58:19 +02:00
|
|
|
#define __HASH_STRING_H
|
2010-09-22 17:25:19 +02:00
|
|
|
|
2014-10-10 11:51:11 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-09-22 17:25:19 +02:00
|
|
|
unsigned long hash_string(unsigned char *str);
|
2013-06-22 17:58:19 +02:00
|
|
|
int cmp_string(char *a, char *b);
|
2010-09-22 17:25:19 +02:00
|
|
|
|
2014-10-10 11:51:11 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-09-22 17:25:19 +02:00
|
|
|
#endif /* __HASH_STRING_H */
|