conclusion
This commit is contained in:
parent
0f97a589b8
commit
9bc8a11afe
1069 changed files with 48694 additions and 11 deletions
40
05/musl-0.6.0/include/wordexp.h
Normal file
40
05/musl-0.6.0/include/wordexp.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
#ifndef _WORDEXP_H
|
||||
#define _WORDEXP_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define __NEED_size_t
|
||||
|
||||
#include <bits/alltypes.h>
|
||||
|
||||
#define WRDE_DOOFFS 1
|
||||
#define WRDE_APPEND 2
|
||||
#define WRDE_NOCMD 4
|
||||
#define WRDE_REUSE 8
|
||||
#define WRDE_SHOWERR 16
|
||||
#define WRDE_UNDEF 32
|
||||
|
||||
typedef struct
|
||||
{
|
||||
size_t we_wordc;
|
||||
char **wc_wordv;
|
||||
size_t we_offs;
|
||||
} wordexp_t;
|
||||
|
||||
#define WRDE_NOSYS -1
|
||||
#define WRDE_NOSPACE 1
|
||||
#define WRDE_BADCHAR 2
|
||||
#define WRDE_BADVAL 3
|
||||
#define WRDE_CMDSUB 4
|
||||
#define WRDE_SYNTAX 5
|
||||
|
||||
int wordexp (const char *, wordexp_t *, int);
|
||||
void wordfree (wordexp_t *);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue