💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › termux › wordexp.h.gmi captured on 2023-01-29 at 11:32:40. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
wordexp.h (288B)
1 #ifndef _WORDEXP_H_ 2 #define _WORDEXP_H_ 3 4 #define WRDE_NOCMD 0 5 6 typedef struct { 7 size_t we_wordc; 8 char **we_wordv; 9 size_t we_offs; 10 } wordexp_t; 11 12 static inline int wordexp(const char *c, wordexp_t *w, int _i) 13 { 14 return -1; 15 } 16 17 static inline void wordfree(wordexp_t *__wordexp) 18 {} 19 20 #endif