mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-17 16:51:10 +00:00
21 lines
327 B
Objective-C
21 lines
327 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
TGPluralFormZero,
|
|
TGPluralFormOne,
|
|
TGPluralFormTwo,
|
|
TGPluralFormFew,
|
|
TGPluralFormMany,
|
|
TGPluralFormOther
|
|
} TGPluralFormValue;
|
|
|
|
TGPluralFormValue TGPluralForm(unsigned int, int n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|