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 / bb-list.c < prev    next >
C/C++ Source or Header  |  1992-10-04  |  2KB  |  77 lines

  1. /* bb-list.c: operations on bounding box lists.
  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 "bb-list.h"
  22.  
  23.  
  24. /* This routine returns an initialized empty list.  */
  25.  
  26. bb_list_type
  27. bb_list_init ()
  28. {
  29.   bb_list_type bb_list;
  30.   
  31.   BB_LIST_LENGTH (bb_list) = 0;
  32.   BB_LIST_DATA (bb_list) = NULL;
  33.   
  34.   return bb_list;
  35. }
  36.  
  37. /* Append BB to BB_LIST.  */
  38.  
  39. void
  40. bb_list_append (bb_list_type *bb_list, bounding_box_type bb)
  41. {
  42.   BB_LIST_LENGTH (*bb_list)++;
  43.   XRETALLOC (BB_LIST_DATA (*bb_list), BB_LIST_LENGTH (*bb_list),
  44.              bounding_box_type);
  45.  
  46.   BB_LIST_ELT (*bb_list, BB_LIST_LENGTH (*bb_list) - 1) = bb;
  47. }
  48.  
  49. /* Append the elements in the list B2 onto the end of B1.  */
  50.  
  51. void
  52. bb_list_splice (bb_list_type *b1, bb_list_type b2)
  53. {
  54.   unsigned new_length;
  55.   unsigned this_bb;
  56.  
  57.   if (BB_LIST_LENGTH (b2) == 0)
  58.     return;
  59.     
  60.   assert (b1 != NULL);
  61.   
  62.   new_length = BB_LIST_LENGTH (*b1) + BB_LIST_LENGTH (b2);
  63.   XRETALLOC (BB_LIST_DATA (*b1), new_length, bounding_box_type);
  64.   
  65.   for (this_bb = 0; this_bb < BB_LIST_LENGTH (b2); this_bb++)
  66.     BB_LIST_ELT (*b1, BB_LIST_LENGTH (*b1)++) = BB_LIST_ELT (b2, this_bb);
  67. }
  68.  
  69. /* Free the memory in a list.  */
  70.  
  71. void
  72. bb_list_free (bb_list_type *bb_list)
  73. {
  74.   if (BB_LIST_DATA (*bb_list) != NULL)
  75.     safe_free ((address *) &BB_LIST_DATA (*bb_list));
  76. }
  77.