File: coding.html

package info (click to toggle)
lttv 1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,276 kB
  • ctags: 2,921
  • sloc: ansic: 26,335; sh: 11,338; makefile: 247
file content (32 lines) | stat: -rw-r--r-- 792 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title>Coding practices</title>
</head>
  <body>
        
<h1>Coding practices</h1>
        
<p>
The Linux Trace Toolkit viewer and libltt libraries use the coding standards
of the underlying <A HREF="www.gtk.org">glib and gtk libraries</A>.
This includes: 

<UL>
<LI>lower case file names without underscore but with an occasional dash,
<LI>lower case function names with underscores separating words,
<LI>type names starting with a capital letter and with capital letters
separating words.
</UL>

<P>
Each file in the libltt library should contain a 
<A HREF=library-header.txt">LGPL header</A> while each file in the LTT viewer
should contain a
<A HREF=library-header.txt">GPL header</A>.

</body>
</html>