aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-01-31 14:30:33 +1000
committerDavid Walter Seikel2014-01-31 14:30:33 +1000
commit3cd1f5e0f5961ad9b5e7375978f362a0d609f741 (patch)
treeb7f23bcd3917794851f6846073b2d25cfe2cf7f3
parentDocument handle_keys() and friends. (diff)
downloadboxes-3cd1f5e0f5961ad9b5e7375978f362a0d609f741.zip
boxes-3cd1f5e0f5961ad9b5e7375978f362a0d609f741.tar.gz
boxes-3cd1f5e0f5961ad9b5e7375978f362a0d609f741.tar.bz2
boxes-3cd1f5e0f5961ad9b5e7375978f362a0d609f741.tar.xz
Document my use of camelCaseNames v underscore_names.
-rw-r--r--handlekeys.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/handlekeys.c b/handlekeys.c
index 70ecfd7..e07e234 100644
--- a/handlekeys.c
+++ b/handlekeys.c
@@ -2,7 +2,13 @@
2 * 2 *
3 * Copyright 2012 David Seikel <won_fang@yahoo.com.au> 3 * Copyright 2012 David Seikel <won_fang@yahoo.com.au>
4 */ 4 */
5 5
6// I use camelCaseNames internally, instead of underscore_names as is preferred
7// in the rest of toybox. A small limit of 80 characters per source line infers
8// shorter names should be used. CamelCaseNames are shorter. Externally visible
9// stuff is underscore_names as usual. Plus, I'm used to camelCaseNames, my
10// fingers twitch that way.
11
6#include "toys.h" 12#include "toys.h"
7#include "handlekeys.h" 13#include "handlekeys.h"
8 14