mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-22 11:13:36 +03:00
4f10bfcfd2
This is referred to in the documentation, so should be there
12 lines
220 B
C
12 lines
220 B
C
#ifndef _IDRIS_READLINE_H
|
|
#define _IDRIS_READLINE_H
|
|
|
|
void idrisrl_setCompletion(rl_completion_func_t* fn);
|
|
|
|
char* getString(void* str);
|
|
void* mkString(char* str);
|
|
void* nullString();
|
|
int isNullString(void* str);
|
|
|
|
#endif
|