1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/include/hash_string.h

24 lines
450 B
C
Raw Normal View History

/*
* 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 */