wc in 44 lines of C
Go to file
2023-09-15 11:20:42 +03:00
historical move "extra" to src repository 2023-09-15 10:43:04 +03:00
src move to using getc 2023-09-15 11:20:42 +03:00
README.md move "extra" to src repository 2023-09-15 10:43:04 +03:00

wc: count words in <50 lines of C

Desiderata

  • Simplicity: Just count words as delimited by spaces, tabs, newlines.
  • Allow: reading files, piping to the utility, and reading from stdin.
  • Separate utilities for counting different things, like lines and characters.
  • Avoid off-by-one errors.
  • Linux only.
  • Small.

Comparison with other historical versions wc.

The version in wc/wc.c in this repository sits at 43 lines. It decides to read from stdin if the number of arguments fed to it is otherwise zero, and uses the linux read function to read character by character. It doesn't have flags, instead, there are further utilities in the extra/ folder for counting characters and lines, sitting at 33 and 35 lines of code, respectively. This version also has little error checking.

Here is a version of wc from UNIX V7, at 86 lines. It allows for counting characters, words and lines. I couldn't find a version in UNIX V6, so I'm guessing this is one of the earliest versions of this program (?). It decides to read from stdin if the number of arguments fed to it is zero, and reads character by character using the standard C getc function.

The busybox version (git.busybox.net) of wc sits at 257 lines (162 with comments stripped), while striving to be POSIX-compliant, meaning it has a fair number of flags and a bit of complexity. It reads character by character by using the standard getc function, and decides to read from stdin or not using its own fopen_or_warn_stdin function. It uses two GOTOs to get around, and has some incomplete Unicode support.

The plan9 version implements some sort of table method in 331 lines. It uses plan9 rather than Unix libraries and methods, and seems to read from stdin if the number of args is 0.

The plan9port version of wc (github) also implements some sort of table method, in 352 lines. It reads from stdin if the number of args is 0, and uses the Linux read function to read character by character.

The GNU utils version (github, savannah) is a bit over 1K lines of C. It does many things and checks many possible failure modes. I think it detects whether it should be reading from stdin using some very wrapped fstat, and it reads character by character using its own custom function.

So this utility started out reasonably small, then started getting more and more complex. The POSIX committee ended up codifying that implementation, and now we are stuck with it because even implementations like busybox which strive to be quite small try to keep to POSIX.

Usage examples

echo "En un lugar de la Mancha" | ww
cat README.md | ww
ww README.md 
ww # write something, then exit with Ctrl+D

Relationship with cat-v

Does one really need to spend 1k lines of C code to count characters, words and lines? There are many versions of this rant one could give, but the best and probably best known is [this one](to do: locate) by cat-v, named for the explosion of options.

[ add sad busybox comment on its cat implementation ]

Steps:

  • Look into how C utilities both read from stdin and from files.
  • Program first version of the utility
  • Compare with other implementations, see how they do it, after I've created my own version
  • Install to ww, but check that ww is empty (installing to wc2 or smth would mean that you don't save that many keypresses vs wc -w)
  • Look specifically at how other versions do stuff.
    • Distinguish between reading from stdin and reading from a file
      • If it doesn't have arguments, read from stdin.
    • Open files, read characters.
  • Write version that counts lines (lc)
    • Take into account what happens if file doesn't end in newline.
    • Count EOF as word & line separator
    • Document it
  • Document reading from user-inputed stdin (end with Ctrl+D)
  • Possible follow-up: Write simple versions for other coreutils. https://git.busybox.net/busybox/tree/coreutils/? Would be a really nice project.
    • Get it working on a DuskOS/CollapseOS machine? Or, find a minimalistic kernel that could use them?
  • add chc, or charcounter (cc is "c compiler")
  • Pitch to lwn.net?

Discarded:

  • [ ] Could use zig? => Not for now
  • Maybe make some pull requests, if I'm doing something better? => doesn't seem like it
  • [ ] Write man files?