1 1.1 christos /* Definitions for Windows path manipulation. 2 1.1 christos Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 3 1.1 christos 2006 Free Software Foundation, Inc. 4 1.1 christos This file is part of GNU Make. 5 1.1 christos 6 1.1 christos GNU Make is free software; you can redistribute it and/or modify it under the 7 1.1 christos terms of the GNU General Public License as published by the Free Software 8 1.1 christos Foundation; either version 2, or (at your option) any later version. 9 1.1 christos 10 1.1 christos GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY 11 1.1 christos WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 12 1.1 christos A PARTICULAR PURPOSE. See the GNU General Public License for more details. 13 1.1 christos 14 1.1 christos You should have received a copy of the GNU General Public License along with 15 1.1 christos GNU Make; see the file COPYING. If not, write to the Free Software 16 1.1 christos Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ 17 1.1 christos 18 1.1 christos #ifndef _PATHSTUFF_H 19 1.1 christos #define _PATHSTUFF_H 20 1.1 christos 21 1.1 christos extern char * convert_Path_to_windows32(char *Path, char to_delim); 22 1.1 christos extern char * convert_vpath_to_windows32(char *Path, char to_delim); 23 1.1 christos extern char * w32ify(char *file, int resolve); 24 1.1 christos extern char * getcwd_fs(char *buf, int len); 25 1.1 christos 26 1.1 christos #endif 27