systemSetup

system setup, configuration and dotfiles
git clone https://noulin.net/git/systemSetup.git
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