summaryrefslogtreecommitdiff
path: root/wc.c
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2019-06-11 09:57:14 -0400
committerRobert Morris <[email protected]>2019-06-11 09:57:14 -0400
commit5753553213df8f9de851adb68377db43faecb91f (patch)
tree3b629ff54897fca414146677532cb459a2ed11ba /wc.c
parent91ba81110acd3163f7de3580b677eece0c57f5e7 (diff)
downloadxv6-labs-5753553213df8f9de851adb68377db43faecb91f.tar.gz
xv6-labs-5753553213df8f9de851adb68377db43faecb91f.tar.bz2
xv6-labs-5753553213df8f9de851adb68377db43faecb91f.zip
separate source into kernel/ user/ mkfs/
Diffstat (limited to 'wc.c')
-rw-r--r--wc.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/wc.c b/wc.c
deleted file mode 100644
index d6a54df..0000000
--- a/wc.c
+++ /dev/null
@@ -1,54 +0,0 @@
-#include "types.h"
-#include "stat.h"
-#include "user.h"
-
-char buf[512];
-
-void
-wc(int fd, char *name)
-{
- int i, n;
- int l, w, c, inword;
-
- l = w = c = 0;
- inword = 0;
- while((n = read(fd, buf, sizeof(buf))) > 0){
- for(i=0; i<n; i++){
- c++;
- if(buf[i] == '\n')
- l++;
- if(strchr(" \r\t\n\v", buf[i]))
- inword = 0;
- else if(!inword){
- w++;
- inword = 1;
- }
- }
- }
- if(n < 0){
- printf(1, "wc: read error\n");
- exit();
- }
- printf(1, "%d %d %d %s\n", l, w, c, name);
-}
-
-int
-main(int argc, char *argv[])
-{
- int fd, i;
-
- if(argc <= 1){
- wc(0, "");
- exit();
- }
-
- for(i = 1; i < argc; i++){
- if((fd = open(argv[i], 0)) < 0){
- printf(1, "wc: cannot open %s\n", argv[i]);
- exit();
- }
- wc(fd, argv[i]);
- close(fd);
- }
- exit();
-}