website

The source code for https://bpaul.xyz
Log | Files | Refs

c-style (378B)


      1 put all source files in the same directory so that grep can be run on them with `grep 'blahblah' *`
      2 use tabs for indentation because some people like different indentation sizes. avoid writing code that depends on a certain indentation size
      3 define return types of functions on a separate line to the functions so that the functions can be searched with `grep '^functionname' *`