mirror of https://github.com/rusefi/lua.git
exported functions follow "lua" prefix rule.
This commit is contained in:
parent
ea98620d98
commit
b9e31f73ee
11
zio.h
11
zio.h
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* zio.h
|
* zio.h
|
||||||
* a generic input stream interface
|
* a generic input stream interface
|
||||||
* $Id: zio.h,v 1.4 1997/06/13 13:49:16 lhf Exp $
|
* $Id: zio.h,v 1.1 1997/06/16 16:50:22 roberto Exp roberto $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef zio_h
|
#ifndef zio_h
|
||||||
|
@ -9,6 +9,15 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* For Lua only */
|
||||||
|
#define zFopen luaz_Fopen
|
||||||
|
#define zfopen luaz_fopen
|
||||||
|
#define zpopen luaz_popen
|
||||||
|
#define zsopen luaz_sopen
|
||||||
|
#define zmopen luaz_mopen
|
||||||
|
|
||||||
#define EOZ (-1) /* end of stream */
|
#define EOZ (-1) /* end of stream */
|
||||||
|
|
||||||
typedef struct zio ZIO;
|
typedef struct zio ZIO;
|
||||||
|
|
Loading…
Reference in New Issue