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: e4a83fae173a2fb1eac0db9c38dc7ed09e697596 (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