•  Back 
  •  C Language 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : C-Language Documentation
Author      : John Kormylo
Version     : C.HYP 1.0
Subject     : Documentation/C-Language
Nodes       : 233
Index Size  : 6362
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : en
@default    : 
@help       : Help
@options    : +g -i -s +x +z -t4
@width      : 75
View Ref-File[ Too many cases ]

  The number of case statements in a switch block exceeded 255
  (version 1.0) or 8191 (version 1.1).

  The easiest way to overcome this problem is to break up the block
  using:

switch( test ) {
  ...                        /* the first 255 cases */
default: switch( test ) {
  ...                        /* remaining cases */
 } }