2
What to know when hacking on GPump
4
1) It is written in C/GLib
6
2) Use "1TBS" brace stryle.
8
3) Use two spaces for indentation
10
4) Use a spacious coding style. Put room between things as much as you can.
15
Files should be capitalised if, and only if they represent a type and or class.
16
files that only contain helper functions should not be capitalised.
18
Types should be capitalised but not variable or function names, this is to
19
comply with other GLib/GObject/GTK+ project naming conventions.
24
MyType * my_function ();
28
typedef struct Foo Foo;
32
GString * some_gstring;
33
GIOStream * some_io_stream;