mirror of
https://github.com/zeldaret/st
synced 2026-05-29 08:42:59 -04:00
c98c03de39
* match wstring.c * match math_api.c, mbstring.c, mem.c and mem_funcs.c * more progress * build issues * fix non-matching issues * reorganise files * match fdlibm (+ libc progress) * fix jp build * solved some non-matchings and progress * removed types.h usage in libc * match data and add missing delinks for jp
20 lines
270 B
C
20 lines
270 B
C
#ifndef _C_ANSI_FILES_H
|
|
#define _C_ANSI_FILES_H
|
|
|
|
#include <file_struc.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define console_buff_mode _IOLBF
|
|
#define console_buff_size 256
|
|
|
|
typedef unsigned char console_buff[console_buff_size];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|