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:
parent
c279427f8d
commit
d9b3dc0000
32 changed files with 402 additions and 101 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue