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 / charspace / kern.c < prev    next >
C/C++ Source or Header  |  1992-06-13  |  2KB  |  53 lines

  1. /* kern.c: kerns in the CMI file.
  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 "kern.h"
  22.  
  23.  
  24. /* This is taken from `tfm_set_kern', except RIGHT is a character name,
  25.    instead of a character code, and the value of the kern K is a
  26.    `symval_type' (since it is useful, as well as more consistent, to
  27.    define kerns like side bearings) instead of a real.  */
  28.  
  29. void
  30. char_set_kern (list_type *kern_list, string right, symval_type k)
  31. {
  32.   unsigned this_right;
  33.   char_kern_type *new_kern;
  34.   
  35.   assert (kern_list != NULL);
  36.   
  37.   for (this_right = 0; this_right < LIST_SIZE (*kern_list); this_right++)
  38.     {
  39.       char_kern_type *kern = LIST_ELT (*kern_list, this_right);
  40.  
  41.       if (STREQ (kern->character, right))
  42.     { /* Already there, just replace the value.  */
  43.       kern->kern = k;
  44.       return;
  45.     }
  46.     }
  47.  
  48.   /* RIGHT wasn't in the existing list.  Add it to the end.  */
  49.   new_kern = LIST_TAPPEND (kern_list, char_kern_type);
  50.   new_kern->character = right;
  51.   new_kern->kern = k;
  52. }
  53.