Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | 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
 
6
extern void _FUNC(shell_puts)(const char *s);
7
extern void _FUNC(shell_putc)(char c);
8
extern char _FUNC(shell_getc)();
9
extern void _FUNC(shell_gets)(char *str);
10
extern void _FUNC(shell_cls)();
11
extern void _FUNC(shell_exit)();
12
 
13
#endif