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 / make-suffix.c < prev    next >
C/C++ Source or Header  |  1992-10-22  |  1KB  |  40 lines

  1. /* make-suffix.c: unconditionally change the suffix on a string.
  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. string
  22. make_suffix (string s, string new_suffix)
  23. {
  24.   string new_s;
  25.   string old_suffix = find_suffix (s);
  26.  
  27.   if (old_suffix == NULL)
  28.     new_s = concat3 (s, ".", new_suffix);
  29.   else
  30.     {
  31.       unsigned length_through_dot = old_suffix - s;
  32.       
  33.       new_s = xmalloc (length_through_dot + strlen (new_suffix) + 1);
  34.       strncpy (new_s, s, length_through_dot);
  35.       strcpy (new_s + length_through_dot, new_suffix);
  36.     }
  37.  
  38.   return new_s;
  39. }
  40.