19 lines
393 B
C++
19 lines
393 B
C++
#include "filecomplete.h"
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
std::cout << "PreContent1 " << std::endl;
|
|
std::cout << "PreContent2 " << std::endl;
|
|
fc_append('|');
|
|
while (1) {
|
|
char* content = fc_readline();
|
|
if (content) {
|
|
fc_free(content);
|
|
std::cout << "" << std::endl;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|