Subversion Repositories Kolibri OS

Rev

Rev 8629 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8629 turbocat 1
#ifndef _SHELL_API_H_
2
#define _SHELL_API_H_
3
 
4
#include 
5
 
8632 turbocat 6
extern void _FUNC(shell_printf)(const char* format, ...);
8629 turbocat 7
extern void _FUNC(shell_puts)(const char *s);
8
extern void _FUNC(shell_putc)(char c);
9
extern char _FUNC(shell_getc)();
10
extern void _FUNC(shell_gets)(char *str);
11
extern void _FUNC(shell_cls)();
12
extern void _FUNC(shell_exit)();
13
 
14
#endif