1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

update from tobold

This commit is contained in:
Werner Koch 1998-06-11 07:16:50 +00:00
parent c279427f8d
commit d9b3dc0000
32 changed files with 402 additions and 101 deletions

View file

@ -65,6 +65,20 @@ make_filename( const char *first_part, ... )
}
int
compare_filenames( const char *a, const char *b )
{
/* ? check whether this is an absolute filename and
* resolve symlinks?
*/
#ifdef __MINGW32__
return stricmp(a,b);
#else
return strcmp(a,b);
#endif
}
/****************
* A simple function to decide whether the filename is stdout
* or a real filename.