Newer
Older
Import / applications / Photoframe / Research / SMB / jags-0.22.1 / plugins / test.cpp
@John Ryland John Ryland on 22 Dec 2020 178 bytes import of apps from backup copy of dell-pc
#include <iostream.h>
#include <fstream.h>

main() {
  char *buffer = new char[100];
  while (cin.good()) {
    cin.getline(buffer, 100, '\n');
    cout << buffer << '\n';
  }
}