-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split non-static code out of wiggle.c
wiggle.c container some code that other files reference. Now that this other file can live in a library (libwiggle), move that code into a new file - util.c - so it is available in the library. Signed-off-by: NeilBrown <[email protected]>
- Loading branch information
Showing
3 changed files
with
77 additions
and
46 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
* wiggle - apply rejected patches | ||
* | ||
* Copyright (C) 2003 Neil Brown <[email protected]> | ||
* Copyright (C) 2010-2013 Neil Brown <[email protected]> | ||
* Copyright (C) 2014-2020 Neil Brown <[email protected]> | ||
* | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. | ||
* | ||
* Author: Neil Brown | ||
* Email: <[email protected]> | ||
*/ | ||
|
||
#include "wiggle.h" | ||
#include <unistd.h> | ||
#include <stdlib.h> | ||
#include <sys/stat.h> | ||
|
||
char *Cmd = "wiggle"; | ||
|
||
int do_trace = 0; | ||
|
||
void *xmalloc(int size) | ||
{ | ||
void *rv = malloc(size); | ||
if (size && !rv) { | ||
char *msg = "Failed to allocate memory - aborting\n"; | ||
write(2, msg, strlen(msg)); | ||
exit(3); | ||
} | ||
return rv; | ||
} | ||
|
||
void printword(FILE *f, struct elmnt e) | ||
{ | ||
if (e.start[0]) | ||
fprintf(f, "%.*s", e.plen + e.prefix, | ||
e.start - e.prefix); | ||
else { | ||
int a, b, c; | ||
sscanf(e.start+1, "%d %d %d", &a, &b, &c); | ||
fprintf(f, "*** %d,%d **** %d%s", b, c, a, e.start+18); | ||
} | ||
} | ||
|
||
void die(char *reason) | ||
{ | ||
fprintf(stderr, "%s: fatal error: %s failure\n", Cmd, reason); | ||
exit(3); | ||
} | ||
|
||
void check_dir(char *name, int fd) | ||
{ | ||
struct stat st; | ||
if (fstat(fd, &st) != 0) { | ||
fprintf(stderr, "%s: fatal: %s is strange\n", Cmd, name); | ||
exit(3); | ||
} | ||
if (S_ISDIR(st.st_mode)) { | ||
fprintf(stderr, "%s: %s is a directory\n", Cmd, name); | ||
exit(3); | ||
} | ||
} | ||
|
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