| 12345678910111213141516171819202122232425262728293031 |
- /* SPDX-License-Identifier: LGPL-2.1-or-later */
- /*
- *
- * BlueZ - Bluetooth protocol stack for Linux
- *
- * Copyright (C) 1991-2013 Free Software Foundation, Inc.
- *
- *
- */
- #ifndef _WORDEXP_H_
- #define _WORDEXP_H_
- #define WRDE_NOCMD 0
- typedef struct {
- size_t we_wordc;
- char **we_wordv;
- size_t we_offs;
- } wordexp_t;
- static inline int wordexp(const char *c, wordexp_t *w, int _i)
- {
- return -1;
- }
- static inline void wordfree(wordexp_t *__wordexp)
- {
- }
- #endif
|