forked from KolibriOS/kolibrios
781f3f0fab
- Added shell apis(shell_api.h) - Added functions for working with a named shared memory area(ksys.h). - Fixed itoa git-svn-id: svn://kolibrios.org@8629 a494cfbc-eb01-0410-851d-a64ba20cac60
13 lines
298 B
C
13 lines
298 B
C
#ifndef _SHELL_API_H_
|
|
#define _SHELL_API_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
extern void _FUNC(shell_puts)(const char *s);
|
|
extern void _FUNC(shell_putc)(char c);
|
|
extern char _FUNC(shell_getc)();
|
|
extern void _FUNC(shell_gets)(char *str);
|
|
extern void _FUNC(shell_cls)();
|
|
extern void _FUNC(shell_exit)();
|
|
|
|
#endif |