| 123456789101112131415 |
- #define NOBUILD_IMPLEMENTATION
- #include "../nobuild.h"
- int main(void)
- {
- #if _WIN32
- WARN("Piping is not implemented on Windows yet");
- #else
- PIPE(IN(PATH("examples", "pipe.c")),
- CHAIN(PATH("tools", "rot13")),
- CHAIN(PATH("tools", "hex")));
- #endif
- return 0;
- }
|