9 lines
118 B
C
9 lines
118 B
C
|
#include "rio.h"
|
||
|
|
||
|
void cb(char *str) { printf("%s\n", str); }
|
||
|
|
||
|
int main() {
|
||
|
rforfile("/tmp", cb);
|
||
|
|
||
|
return 0;
|
||
|
}
|