mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
13 lines
384 B
Objective-C
13 lines
384 B
Objective-C
#ifndef Postbox_MurMurHash32_h
|
|
#define Postbox_MurMurHash32_h
|
|
|
|
#import <stdint.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
int32_t murMurHash32(void *bytes, int length);
|
|
int32_t murMurHash32Data(NSData *data);
|
|
int32_t murMurHashString32(const char *s);
|
|
NSString *postboxTransformedString(CFStringRef string, bool replaceWithTransliteratedVersion, bool appendTransliteratedVersion);
|
|
|
|
#endif
|