home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / finger / part01 / upper.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-03  |  819 b   |  28 lines

  1. /*
  2.  * upper.c -- uppercaseification table
  3.  *
  4.  * Copyright (C) 1988, 1990  Philip L. Budne
  5.  *
  6.  * This file is part of "Phil's Finger Program".
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 1, or (at your option)
  11.  * any later version.
  12.  *
  13.  */
  14.  
  15. # ifndef lint
  16. static char *rcsid = "$Id: upper.c,v 3.0 90/07/06 13:12:08 budd Rel $";
  17. # endif /* lint not defined */
  18.  
  19. # include "finger.h"
  20. # include "upper.h"
  21.  
  22. GLOBAL char uppercase[] = "\
  23. \000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\
  24. \020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037\
  25.  !\"#$%&'()*+,-./0123456789:;<=>?\
  26. @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\
  27. `ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~\177";
  28.