18 lines
408 B
C
18 lines
408 B
C
/* path.h
|
|
|
|
Copyright 2001, 2002, 2003 Red Hat, Inc.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
char *cygpath (const char *s, ...);
|
|
bool is_exe (HANDLE);
|
|
bool is_symlink (HANDLE);
|
|
bool readlink (HANDLE, char *, int);
|
|
int get_word (HANDLE, int);
|
|
int get_dword (HANDLE, int);
|
|
|