mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 02:20:07 +00:00
11 lines
216 B
Objective-C
11 lines
216 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "ASCommon.h"
|
|
|
|
void __tgvoip_call_tglog(char* format, ...){
|
|
va_list args;
|
|
va_start(args, format);
|
|
TGLogv([[NSString alloc]initWithCString:format], args);
|
|
va_end(args);
|
|
}
|