pipe.c 288 B

123456789101112131415
  1. #define NOBUILD_IMPLEMENTATION
  2. #include "../nobuild.h"
  3. int main(void)
  4. {
  5. #if _WIN32
  6. WARN("Piping is not implemented on Windows yet");
  7. #else
  8. PIPE(IN(PATH("examples", "pipe.c")),
  9. CHAIN(PATH("tools", "rot13")),
  10. CHAIN(PATH("tools", "hex")));
  11. #endif
  12. return 0;
  13. }