Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fixargv.h « fixargv « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e62226600ecf12b1559ed6f2fc5f1274b7948b3 (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
/*
 * fixargv.h
 *
 * Prototypes of utility functions for 'properly' escaping argv vectors.
 *
 *  THIS SOFTWARE IS NOT COPYRIGHTED
 *
 *  This source code is offered for use in the public domain. You may
 *  use, modify or distribute it freely.
 *
 * $Revision$
 * $Author$
 * $Date$
 *
 */

#ifndef _FIXARGV_H_
#define _FIXARGV_H_

char* fix_arg (const char* szArg);
char* const* fix_argv (int argc, char* const* szaArgv);
void free_fixed_argv (char* const* szaFixed, char* const* szaOld);

#endif