File: ladders.ch

package info (click to toggle)
sgb 1%3A20030623-3
  • links: PTS
  • area: non-free
  • in suites: sarge
  • size: 1,868 kB
  • ctags: 28
  • sloc: makefile: 197; sh: 15
file content (61 lines) | stat: -rw-r--r-- 1,132 bytes parent folder | download | duplicates (8)
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
60
61
@x l.90
main(argc,argv)
  int argc; /* the number of command-line arguments */
  char *argv[]; /* an array of strings containing those arguments */
@y
int main(@t\1\1@>
  int argc, /* the number of command-line arguments */
  char *argv[]@t\2\2@>) /* an array of strings containing those arguments */
@z

@x l.216
long freq_cost(v)
  Vertex *v;
@y
long freq_cost(Vertex *v)
@z

@x l.284
long alph_dist(p,q)
  register char *p, *q;
@y
long alph_dist(register char *p,register char *q)
@z

@x l.291
void plant_new_edge(v)
  Vertex *v;
@y
void plant_new_edge(Vertex *v)
@z

@x l.324
long hamm_dist(p,q)
  register char *p, *q;
@y
long hamm_dist(register char *p,register char *q)
@z

@x l.338
long alph_heur(v)
  Vertex *v;
@y
long alph_heur(Vertex *v)
@z

@x l.342
long hamm_heur(v)
  Vertex *v;
@y
long hamm_heur(Vertex *v)
@z

@x l.380
long prompt_for_five(s,p)
  char *s; /* string used in prompt message */
  register char *p; /* where to put a string typed by the user */
@y
long prompt_for_five(@t\1\1@>
  char *s, /* string used in prompt message */
  register char *p@t\2\2@>) /* where to put a string typed by the user */
@z