aboutsummaryrefslogtreecommitdiff
path: root/CodingStyle
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-02-14 21:02:17 +0100
committerGuido Günther <agx@sigxcpu.org>2011-02-14 21:02:17 +0100
commit7b7e3193b5647606508a0342479f7b322ec31cc6 (patch)
treef79dd9b1cfa2cf7a439be149ccbe1dac78867d37 /CodingStyle
parentDocument changes and release 0.17-1 (diff)
parentNew upstream version 2.91.6 (diff)
downloadkrb5-auth-dialog-7b7e3193b5647606508a0342479f7b322ec31cc6.tar.gz
krb5-auth-dialog-7b7e3193b5647606508a0342479f7b322ec31cc6.tar.bz2
krb5-auth-dialog-7b7e3193b5647606508a0342479f7b322ec31cc6.zip
Merge commit 'upstream/2.91.6'
Diffstat (limited to 'CodingStyle')
-rw-r--r--CodingStyle33
1 files changed, 33 insertions, 0 deletions
diff --git a/CodingStyle b/CodingStyle
new file mode 100644
index 0000000..81fa5e1
--- /dev/null
+++ b/CodingStyle
@@ -0,0 +1,33 @@
+CodingStyle
+-----------
+- secmem/ keeps it's CodingStyle so we can merge easily with pinentry-gtk
+- Public functions start with ka_
+- The object in instance methods is called self
+- Indent in four space units, no tabs
+
+ /*
+ * vim: set tabstop=4:
+ * vim: set shiftwidth=4:
+ * vim: set expandtab:
+ */
+
+- The following indent expression is a good approximation:
+ indent --no-tabs \
+ --indent-level4 \
+ --space-after-procedure-calls \
+ --space-after-for \
+ --space-after-if \
+ --space-after-while \
+ --cuddle-else \
+ --braces-on-if-line \
+ --procnames-start-lines \
+ --braces-on-struct-decl-line \
+ --braces-after-func-def-line \
+ --blank-lines-after-declarations \
+ -Tgchar -Tgpointer -TG_MODULE_EXPORT \
+ -TGParamSpec -TGValue -TGObject \
+ -TGtkWidget -TGtkMenuItem \
+ -TKaPlugin -TKaApplet -TKaAppletClass \
+ -TKaPluginDummy -TKaPluginDummyClass \
+ -TKaPluginPam -TKaPluginPamClass \
+ -TKaPluginAfs -TKaPluginAfsClass
bgstack15