File: namesformat1.ll

package info (click to toggle)
lifelines 3.0.50-2etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 11,160 kB
  • ctags: 6,517
  • sloc: ansic: 57,468; xml: 8,014; sh: 4,489; makefile: 848; yacc: 601; perl: 170; sed: 16
file content (59 lines) | stat: -rw-r--r-- 1,242 bytes parent folder | download | duplicates (7)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * @progname       namesformat1.ll
 * @version        1.0
 * @author         Manis
 * @category       
 * @output         Text
 * @description    
 *
 *   This program produces a report of how the names format may be printed
 *   using the LifeLines Report Generator.
 *
 *   namesformat1
 *
 *   Code by Cliff Manis, cmanis@csoftec.csf.com
 *
 *   This report works only with the LifeLines Genealogy program
 *
 *   version one of this report was written by Cliff Manis in 1991
 *
 *   It will produce a report of how the names format may be printed
 *   using the LifeLines Report Generator.
 *
 *   It is designed for 10 or 12 pitch, HP laserjet III, or any
 *   other printer.
 *
 *   Output is an ASCII file.
 *
 *   An example of the output may be seen at end of this report.
 *
 */

proc main ()
{
	set (nl,nl())
	getindi(indi)
	fullname(indi,0,0,30) nl
	fullname(indi,1,0,30) nl
	fullname(indi,0,1,30) nl
	fullname(indi,1,1,30) nl
	fullname(indi,0,0,12) nl
	fullname(indi,1,0,12) nl
	fullname(indi,0,1,12) nl
	fullname(indi,1,1,12) nl
}

/*  Sample of report output

Manis, Alda Clifford        
MANIS, Alda Clifford
Alda Clifford Manis
Alda Clifford MANIS
Manis, A C
MANIS, A C
Alda C Manis
Alda C MANIS
* /

/* End of Report */