mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 19:13:02 +03:00
97 lines
1.7 KiB
C
97 lines
1.7 KiB
C
#include "idris_support.h"
|
|
#include "idris_file.h"
|
|
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef _WIN32
|
|
extern char **_environ;
|
|
#include "windows/win_utils.h"
|
|
#define environ _environ
|
|
#else
|
|
extern char** environ;
|
|
#endif
|
|
|
|
int idris2_isNull(void* ptr) {
|
|
return (ptr == NULL);
|
|
}
|
|
|
|
void *idris2_getNull() {
|
|
return NULL;
|
|
}
|
|
|
|
char* idris2_getString(void *p) {
|
|
return (char*)p;
|
|
}
|
|
|
|
int idris2_getErrno() {
|
|
return errno;
|
|
}
|
|
|
|
char* idris2_getStr() {
|
|
char *inp = idris2_readLine(stdin);
|
|
// Remove trailing newline; easier to do this than in PrimIO which
|
|
// doesn't have the relevant functions available yet
|
|
for(char *c = inp; *c != '\0'; ++c) {
|
|
if (*c == '\n' || *c == '\r') {
|
|
*c = '\0';
|
|
}
|
|
}
|
|
return inp;
|
|
}
|
|
|
|
void idris2_putStr(char* f) {
|
|
idris2_writeLine(stdout, f);
|
|
}
|
|
|
|
void idris2_sleep(int sec) {
|
|
#ifdef _WIN32
|
|
win32_sleep(sec*1000);
|
|
#else
|
|
struct timespec t;
|
|
t.tv_sec = sec;
|
|
t.tv_nsec = 0;
|
|
|
|
nanosleep(&t, NULL);
|
|
#endif
|
|
}
|
|
|
|
void idris2_usleep(int usec) {
|
|
#ifdef _WIN32
|
|
win32_sleep(usec/1000);
|
|
#else
|
|
struct timespec t;
|
|
t.tv_sec = usec / 1000000;
|
|
t.tv_nsec = (usec % 1000000) * 1000;
|
|
|
|
nanosleep(&t, NULL);
|
|
#endif
|
|
}
|
|
|
|
int idris2_time() {
|
|
return time(NULL); // RTS needs to have 32 bit integers at least
|
|
}
|
|
|
|
char* idris2_getEnvPair(int i) {
|
|
return *(environ + i);
|
|
}
|
|
|
|
int idris2_setenv(const char *name, const char *value, int overwrite) {
|
|
#ifdef _WIN32
|
|
return win32_modenv(name, value, overwrite);
|
|
#else
|
|
return setenv(name, value, overwrite);
|
|
#endif
|
|
}
|
|
|
|
int idris2_unsetenv(const char *name) {
|
|
#ifdef _WIN32
|
|
return win32_modenv(name, "", 1);
|
|
#else
|
|
return unsetenv(name);
|
|
#endif
|
|
}
|