mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-19 01:31:33 +00:00

git-subtree-dir: submodules/Postbox git-subtree-mainline: 373769682ef152a8d5ef41ccb064a8387b2ca6f0 git-subtree-split: 534443c710e63ff4ea595b5dc7be94550c467734
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
|