[Tizen] Add codes for Dali Windows Backend
[platform/core/uifw/dali-adaptor.git] / dali-windows-backend / ExInclude / wordexp.h
1 #ifndef _WORD_EXP_INCLUDE_\r
2 #define _WORD_EXP_INCLUDE_\r
3 \r
4 /* Structure describing a word-expansion run.  */\r
5 typedef struct\r
6 {\r
7   size_t we_wordc;              /* Count of words matched.  */\r
8   char **we_wordv;              /* List of expanded words.  */\r
9   size_t we_offs;               /* Slots to reserve in `we_wordv'.  */\r
10 } wordexp_t;\r
11 \r
12 /* Do word expansion of WORDS into PWORDEXP.  */\r
13 int wordexp( const char *__restrict __words, wordexp_t *__restrict __pwordexp, int __flags )\r
14 {\r
15   return 0;\r
16 }\r
17 \r
18 /* Free the storage allocated by a `wordexp' call.  */\r
19 void wordfree( wordexp_t *__wordexp )\r
20 {\r
21 \r
22 }\r
23 \r
24 size_t readlink( const char *__restrict __path, char *__restrict __buf, size_t __len )\r
25 {\r
26   return 0;\r
27 }\r
28 \r
29 #endif