mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-21 18:51:40 +03:00
60d597fccd
Pragma once is supported by all compilers for the last ten years. Better use it instead of include guards (which use different styles in different files).
9 lines
173 B
C
9 lines
173 B
C
#pragma once
|
|
|
|
void idrisrl_setCompletion(rl_completion_func_t* fn);
|
|
|
|
char* getString(void* str);
|
|
void* mkString(char* str);
|
|
void* nullString();
|
|
int isNullString(void* str);
|