17 lines
426 B
C
17 lines
426 B
C
#include <jni.h>
|
|
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifndef _PLTBUILD_H
|
|
#define _PLTBUILD_H
|
|
|
|
/*
|
|
* moe/rosa/planterette/jni/GoFile#write(ILnet/java/String;)V
|
|
*/
|
|
JNIEXPORT void JNICALL Java_moe_rosa_planterette_jni_GoFile_write__ILnet_java_String_2(JNIEnv *, jobject, jint, jstring);
|
|
|
|
extern void planterette_write(int fd, char *str_p, size_t str_sz, uintptr_t *errno_p, char **err_str_p);
|
|
|
|
#endif |