sbase/sponge.c

37 lines
609 B
C
Raw Normal View History

2013-07-02 13:26:24 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
2013-07-02 13:26:24 -04:00
#include "text.h"
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s file\n", argv0);
2013-07-02 13:26:24 -04:00
}
int
main(int argc, char *argv[])
{
FILE *fp, *tmpfp;
int ret = 0;
2013-07-02 13:26:24 -04:00
argv0 = argv[0], argc--, argv++;
2013-07-02 13:26:24 -04:00
if (argc != 1)
2013-07-02 13:26:24 -04:00
usage();
if (!(tmpfp = tmpfile()))
2013-07-02 13:26:24 -04:00
eprintf("tmpfile:");
concat(stdin, "<stdin>", tmpfp, "<tmpfile>");
rewind(tmpfp);
if (!(fp = fopen(argv[0], "w")))
2014-11-16 08:20:20 -05:00
eprintf("fopen %s:", argv[0]);
2013-07-02 13:26:24 -04:00
concat(tmpfp, "<tmpfile>", fp, argv[0]);
ret |= fshut(fp, argv[0]) | fshut(tmpfp, "<tmpfile>");
return ret;
2013-07-02 13:26:24 -04:00
}