home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / fontutils-0.6-base.tgz / fontutils-0.6-base.tar / fsf / fontutils / lib / cmdline.c < prev    next >
C/C++ Source or Header  |  1992-03-27  |  2KB  |  64 lines

  1. /* cmdline.c: routines to help in parsing command lines.
  2.  
  3. Copyright (C) 1992 Free Software Foundation, Inc.
  4.  
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. #include "config.h"
  20.  
  21. #include "cmdline.h"
  22.  
  23.  
  24. /* This routine takes a string L consisting of unsigned integers
  25.    separated by commas and returns a vector of the integers, as numbers.
  26.    A element is appended to the vector.  */
  27.  
  28. int *
  29. scan_unsigned_list (string l)
  30. {
  31.   string map;
  32.   unsigned length = 1;
  33.   int *vector = xmalloc (sizeof (int));
  34.   
  35.   for (map = strtok (l, ","); map != NULL; map = strtok (NULL, ","))
  36.     {
  37.       length++;
  38.       vector = xrealloc (vector, length * sizeof (int));
  39.       vector[length - 2] = atou (map);
  40.       if (vector[length - 2] < 0)
  41.         WARNING1 ("Unsigned number %u is too large", vector[length - 2]);
  42.     }
  43.   
  44.   vector[length - 1] = -1;
  45.   return vector;
  46. }
  47.  
  48.  
  49. /* Return the <number> substring in `<name>.<number><stuff>', if S has
  50.    that form.  If it doesn't, return NULL.  */
  51.  
  52. string
  53. find_dpi (string s)
  54. {
  55.   unsigned dpi_number;
  56.   string extension = strrchr (s, '.');
  57.   
  58.   if (extension != NULL)
  59.     if (sscanf (extension + 1, "%u", &dpi_number) == 1)
  60.       return utoa (dpi_number);
  61.  
  62.   return NULL;
  63. }
  64.