staticize some functions
This commit is contained in:
parent
4092196fdc
commit
0c17cd0fb3
2
chmod.c
2
chmod.c
|
@ -8,7 +8,7 @@ static char *modestr = "";
|
||||||
static mode_t mask = 0;
|
static mode_t mask = 0;
|
||||||
static int ret = 0;
|
static int ret = 0;
|
||||||
|
|
||||||
void
|
static void
|
||||||
chmodr(const char *path, int depth)
|
chmodr(const char *path, int depth)
|
||||||
{
|
{
|
||||||
struct stat st;
|
struct stat st;
|
||||||
|
|
2
nl.c
2
nl.c
|
@ -20,7 +20,7 @@ static size_t startnum = 1;
|
||||||
static size_t incr = 1;
|
static size_t incr = 1;
|
||||||
static regex_t preg;
|
static regex_t preg;
|
||||||
|
|
||||||
void
|
static void
|
||||||
nl(const char *name, FILE *fp)
|
nl(const char *name, FILE *fp)
|
||||||
{
|
{
|
||||||
char *buf = NULL;
|
char *buf = NULL;
|
||||||
|
|
4
split.c
4
split.c
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
static int base = 26, start = 'a';
|
static int base = 26, start = 'a';
|
||||||
|
|
||||||
int
|
static int
|
||||||
itostr(char *str, int x, int n)
|
itostr(char *str, int x, int n)
|
||||||
{
|
{
|
||||||
str[n] = '\0';
|
str[n] = '\0';
|
||||||
|
@ -22,7 +22,7 @@ itostr(char *str, int x, int n)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
FILE *
|
static FILE *
|
||||||
nextfile(FILE *f, char *buf, int plen, int slen)
|
nextfile(FILE *f, char *buf, int plen, int slen)
|
||||||
{
|
{
|
||||||
static int filecount = 0;
|
static int filecount = 0;
|
||||||
|
|
2
touch.c
2
touch.c
|
@ -44,7 +44,7 @@ touch(const char *file)
|
||||||
touch(file);
|
touch(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
time_t
|
static time_t
|
||||||
parsetime(char *str, time_t current)
|
parsetime(char *str, time_t current)
|
||||||
{
|
{
|
||||||
struct tm *cur, t;
|
struct tm *cur, t;
|
||||||
|
|
4
wc.c
4
wc.c
|
@ -7,7 +7,7 @@ static int wflag = 0;
|
||||||
static char cmode = 0;
|
static char cmode = 0;
|
||||||
static size_t tc = 0, tl = 0, tw = 0;
|
static size_t tc = 0, tl = 0, tw = 0;
|
||||||
|
|
||||||
void
|
static void
|
||||||
output(const char *str, size_t nc, size_t nl, size_t nw)
|
output(const char *str, size_t nc, size_t nl, size_t nw)
|
||||||
{
|
{
|
||||||
int noflags = !cmode && !lflag && !wflag;
|
int noflags = !cmode && !lflag && !wflag;
|
||||||
|
@ -24,7 +24,7 @@ output(const char *str, size_t nc, size_t nl, size_t nw)
|
||||||
putchar('\n');
|
putchar('\n');
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
wc(FILE *fp, const char *str)
|
wc(FILE *fp, const char *str)
|
||||||
{
|
{
|
||||||
int word = 0, rlen;
|
int word = 0, rlen;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user