Re: Multiple Case Values

From: James Browning (countkase@hotmail.com)
Date: 02/10/02


From: Bejhan Jetha <nhlstar6@YAHOO.COM>
>I know C doesn't support multiple case values but is there another way to
>make it so you can still have two letters without using case values?

you mean like

int whichway(char *dir);
  {
    switch(dir)
      {
        case "N":
          return 0;
        case "NE":
          return 1;
        case "E":
          return 2;
::snip::
      }
    return -EError;
  }


_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

--
   +---------------------------------------------------------------+
   | FAQ: http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html |
   | Archives: http://post.queensu.ca/listserv/wwwarch/circle.html |
   | Newbie List:  http://groups.yahoo.com/group/circle-newbies/   |
   +---------------------------------------------------------------+



This archive was generated by hypermail 2b30 : 06/25/03 PDT