blob: cf60e73169646b8f7be3cefc57400b77b3cd845a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* Copyright © 2001 Novell, Inc. All Rights Reserved.
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
/*
* FILENAME : nwplglob.h
* DESCRIPTION : Perl globbing support for NetWare.
* Author : HYAK
* Date : January 2001.
*
*/
#ifndef __NWplGlob_H__
#define __NWplGlob_H__
void fnDoPerlGlob(char** argv, char* fileName);
#endif // __NWplGlob_H__
|