/wc.c (11761302592629a999a113c68d55f88ffd9c8052) (2111 bytes) (mode 100644) (type blob)
/*
Copyright 2019 Matthew Graham <sl@airmail.cc>
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 3 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. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdio.h>
void wcout(char *wd, int lines, int words, int bytes, char name[])
{
while (*wd) switch(*wd++) {
case 'l':
printf("%7i", lines);
break;
case 'w':
printf("%7i", words);
break;
case 'c':
printf("%8i", bytes);
break;
}
printf("%12s\n", name);
}
int main(int argc, char *argv[])
{
int character;
int linec=0, wordc=0, bytec=0, iter = 1;
int tlinec=0, twordc=0, tbytec=0;
unsigned int spaceflag, lineflag, tabflag;
char *wd = "lwc";
FILE *filep = stdin;
if (argc > 1 && argv[1][0]=='-') {
wd = ++argv[1];
argc--;
argv++;
}
do {
lineflag=1;
if (argc > 1 && (filep = fopen(argv[iter], "r"))==NULL) {
fprintf(stderr, "wc: unable to open %s\n", argv[iter]);
continue;
}
while ((character = fgetc(filep)) != EOF) {
bytec++;
if (character>='A' && character<='z' && (spaceflag==1||lineflag==1||tabflag==1)) {
wordc++;
spaceflag=0;
lineflag=0;
tabflag=0;
}
switch(character) {
case '\n': linec++;
lineflag=1;
break;
case ' ': spaceflag=1;
break;
case '\t': tabflag=1;
break;
}
} fclose(filep);
if (argc > 2) {
tlinec += linec;
twordc += wordc;
tbytec += bytec;
}
if (argc > 1)
wcout(wd, linec, wordc, bytec, argv[iter]);
else
wcout(wd, linec, wordc, bytec, "");
linec = 0;
wordc = 0;
bytec = 0;
} while (++iter<argc);
if (argc > 2)
wcout(wd, tlinec, twordc, tbytec, "total");
}
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
35149 |
f288702d2fa16d3cdf0035b15a9fcbc552cd88e7 |
COPYING |
100755 |
blob |
676 |
b83c078041e2f7cc06ed7bde425708a9f0daf948 |
INSTALL |
100644 |
blob |
1794 |
b38b363dcdd9a397f9aeead45ca0abd624cb8993 |
README |
100644 |
blob |
4170 |
65ea38779720e5b46409bf1ca341350c916a53dd |
clp.c |
100644 |
blob |
819 |
0f2b94b95ab8a249b6131cb9947c1524ec456e49 |
echo.c |
100644 |
blob |
819 |
5f4f1921ce280bf5a1e2c67cca5431356411d10f |
exho.c |
100644 |
blob |
1498 |
ee38f5bf9009a0326bd8e6d8d5c0d300e8863fcb |
ins.c |
100644 |
blob |
991 |
4c5b7c9b92e8d0b61b9247d1e81d1f026598fd30 |
nl.l |
100644 |
blob |
1976 |
14427f08d4bd234619f7e493847d9178e8e40f57 |
sc.c |
100644 |
blob |
1016 |
6e2a3e198c94e1cda600226a8e49a9d35e7c358f |
spng.c |
100644 |
blob |
1190 |
4f47af1f84fdf30597c7bf12889a86ec4318e87d |
tee.c |
100644 |
blob |
2111 |
11761302592629a999a113c68d55f88ffd9c8052 |
wc.c |
100644 |
blob |
798 |
bde359728301efd5f511798225cc4bd2ab6c1733 |
yes.c |
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/spicylord/clutils
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/spicylord/clutils
Clone this repository using git:
git clone git://git.rocketgit.com/user/spicylord/clutils
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main