home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / uucp / amigauucpsrc / lib / seqname.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-29  |  678 b   |  40 lines

  1.  
  2. /*
  3.  *  SEQNAME.C
  4.  */
  5.  
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include "config.h"
  9.  
  10. Prototype char *SeqToName(long);
  11.  
  12. /*
  13.  *  Convert a sequence number into a numeric/character combination.  Names
  14.  *  are unique and case-insensitive.  The sequence number 0-0xFFFFF will be
  15.  *  converted to a 4 character string each position containing 0-9 a-z,
  16.  *  or base 36 (total of 1.6 million combinations)
  17.  */
  18.  
  19. char *
  20. SeqToName(seqNo)
  21. long seqNo;
  22. {
  23.     static char Buf[5];
  24.     short i;
  25.  
  26.     seqNo &= 0xFFFFF;
  27.  
  28.     for (i = 3; i >= 0; --i) {
  29.     short n = seqNo % 36;
  30.     if (n < 10)
  31.         Buf[i] = n + '0';
  32.     else
  33.         Buf[i] = n - 10 + 'a';
  34.     seqNo /= 36;
  35.     }
  36.     Buf[4] = 0;
  37.     return(Buf);
  38. }
  39.  
  40.