File: phones.c

package info (click to toggle)
rsynth 2.0-6
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 720 kB
  • ctags: 544
  • sloc: ansic: 5,535; sh: 1,249; makefile: 117
file content (28 lines) | stat: -rw-r--r-- 415 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
#include <config.h>
#include <stdio.h>
#include "phones.h"

#ifdef __STDC__
#define PHONE(nm,br,am,ex) #nm,
#else
#define PHONE(nm,br,am,ex) "nm",
#endif
char *ph_name[] =
{" ",
#include "phones.def"
 NULL};
#undef PHONE

#define PHONE(nm,br,am,ex) br,
char *ph_br[] =
{" ",
#include "phones.def"
 NULL};
#undef PHONE

#define PHONE(nm,br,am,ex) am,
char *ph_am[] =
{" ",
#include "phones.def"
 NULL};
#undef PHONE