mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 23:27:12 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
14 lines
477 B
C
14 lines
477 B
C
#ifndef UUTILSDEFS_H
|
|
#define UUTILSDEFS_H 1
|
|
#include <stddef.h> /* for size_t */
|
|
#include "lispemul.h" /* for LispPTR */
|
|
int lisp_string_to_c_string(LispPTR Lisp, char *C, size_t length);
|
|
int c_string_to_lisp_string(char *C, LispPTR Lisp);
|
|
LispPTR check_unix_password(LispPTR *args);
|
|
LispPTR unix_username(LispPTR *args);
|
|
LispPTR unix_getparm(LispPTR *args);
|
|
LispPTR unix_getenv(LispPTR *args);
|
|
LispPTR unix_fullname(LispPTR *args);
|
|
LispPTR suspend_lisp(LispPTR *args);
|
|
#endif
|