File: case_N.h

package info (click to toggle)
rsync 3.1.3-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,888 kB
  • sloc: ansic: 40,820; sh: 5,508; perl: 1,932; makefile: 326; python: 83
file content (76 lines) | stat: -rw-r--r-- 2,018 bytes parent folder | download
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * Allow an arbitrary sequence of case labels.
 *
 * Copyright (C) 2006-2018 Wayne Davison
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, visit the http://fsf.org website.
 */

/* This is included multiple times, once for every segement in a switch statement.
 * This produces the next "case N:" statement in sequence. */

#if !defined CASE_N_STATE_0
#define CASE_N_STATE_0
	case 0:
#elif !defined CASE_N_STATE_1
#define CASE_N_STATE_1
	case 1:
#elif !defined CASE_N_STATE_2
#define CASE_N_STATE_2
	case 2:
#elif !defined CASE_N_STATE_3
#define CASE_N_STATE_3
	case 3:
#elif !defined CASE_N_STATE_4
#define CASE_N_STATE_4
	case 4:
#elif !defined CASE_N_STATE_5
#define CASE_N_STATE_5
	case 5:
#elif !defined CASE_N_STATE_6
#define CASE_N_STATE_6
	case 6:
#elif !defined CASE_N_STATE_7
#define CASE_N_STATE_7
	case 7:
#elif !defined CASE_N_STATE_8
#define CASE_N_STATE_8
	case 8:
#elif !defined CASE_N_STATE_9
#define CASE_N_STATE_9
	case 9:
#elif !defined CASE_N_STATE_10
#define CASE_N_STATE_10
	case 10:
#elif !defined CASE_N_STATE_11
#define CASE_N_STATE_11
	case 11:
#elif !defined CASE_N_STATE_12
#define CASE_N_STATE_12
	case 12:
#elif !defined CASE_N_STATE_13
#define CASE_N_STATE_13
	case 13:
#elif !defined CASE_N_STATE_14
#define CASE_N_STATE_14
	case 14:
#elif !defined CASE_N_STATE_15
#define CASE_N_STATE_15
	case 15:
#elif !defined CASE_N_STATE_16
#define CASE_N_STATE_16
	case 16:
#else
#error Need to add more case statements!
#endif