mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
23 lines
422 B
Objective-C
23 lines
422 B
Objective-C
//
|
|
// Terminal.h
|
|
// iSH
|
|
//
|
|
// Created by Theodore Dubois on 10/18/17.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <WebKit/WebKit.h>
|
|
|
|
@interface Terminal : NSObject
|
|
|
|
+ (Terminal *)terminalWithType:(int)type number:(int)number;
|
|
|
|
- (size_t)write:(const void *)buf length:(size_t)len;
|
|
- (void)sendInput:(const char *)buf length:(size_t)len;
|
|
|
|
@property (readonly) WKWebView *webView;
|
|
|
|
@end
|
|
|
|
extern struct tty_driver ios_tty_driver;
|