1 /* truncate.c: truncate too-long components in a filename.
3 Copyright 1993, 95 Karl Berry.
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <kpathsea/config.h>
23 #include <kpathsea/c-namemx.h>
24 #include <kpathsea/c-pathch.h>
25 #include <kpathsea/c-pathmx.h>
26 #include <kpathsea/truncate.h>
29 /* Truncate any too-long components in NAME, returning the result. It's
30 too bad this is necessary. See comments in readable.c for why. */
33 kpse_truncate_filename P1C(const_string, name)
35 unsigned c_len = 0; /* Length of current component. */
36 unsigned ret_len = 0; /* Length of constructed result. */
38 /* Allocate enough space. */
39 string ret = (string) xmalloc (strlen (name) + 1);
43 if (IS_DIR_SEP (*name) || IS_DEVICE_SEP (*name))
44 { /* At a directory delimiter, reset component length. */
47 else if (c_len > NAME_MAX)
48 { /* If past the max for a component, ignore this character. */
52 /* Copy this character. */
53 ret[ret_len++] = *name;