Idris-dev/rts/idris_stdfgn.h
2014-02-20 23:30:16 +00:00

25 lines
491 B
C

#ifndef _IDRISSTDFGN_H
#define _IDRISSTDFGN_H
// A collection of useful standard functions to be used by the prelude.
void putStr(char* str);
//char* readStr();
void* fileOpen(char* f, char* mode);
void fileClose(void* h);
int fileEOF(void* h);
int fileError(void* h);
void fputStr(void*h, char* str);
void* do_popen(const char* cmd, const char* mode);
int fpoll(void* h);
int idris_eqPtr(void* x, void* y);
int isNull(void* ptr);
void* idris_stdin();
char* getEnvPair(int i);
#endif