💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › termux › wordexp.h.gmi captured on 2023-07-10 at 15:49:48. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

systemSetup

Log

Files

Refs

README

LICENSE

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