Files
simple-rust-tests/__ffi/rust_link_a/hello.c
2021-01-24 23:10:46 +08:00

12 lines
214 B
C

#include <stdio.h>
#include "hello.h"
void print_line(const char* str) {
for (int i = 0; str[i] != 0; i++) {
char c = str[i];
printf("PUT:%d - %c\n", c, c);
}
// str++;
printf("puts:%s\n", str);
}