This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* rbuflog.c - log STDIN to in-memory ring-buffer, print on pipe close or signal | |
* | |
* See usage() for details; | |
*/ | |
#include <stdio.h> | |
#include <signal.h> | |
#include <stdlib.h> | |
#include <string.h> |