mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 04:00:54 +00:00
12 lines
344 B
Objective-C
12 lines
344 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 murMurHashString32(const char *s);
|
|
NSString *postboxTransformedString(CFStringRef string, bool replaceWithTransliteratedVersion, bool appendTransliteratedVersion);
|
|
|
|
#endif
|