Re: [PATCH 10/11] wscript: implemented Host_get_Interactive
15 Jul
2011
15 Jul
'11
7:24 a.m.
Hi Michał, On 07/15/11 03:22, Michał Ziętek wrote:
--- programs/wscript/host.c | 7 +++++-- programs/wscript/main.c | 26 +++++++++++++++++++++++++- programs/wscript/wscript.h | 2 ++ 3 files changed, 32 insertions(+), 3 deletions(-)
+static const WCHAR* get_arg_beginning(const WCHAR* arg) +{ + const WCHAR *beg = arg; + while(*beg == '/' || *beg == '-') { + ++beg; + } + return beg; +} This won't do what you want it to. Jacek
5265
Age (days ago)
5265
Last active (days ago)
0 comments
1 participants
participants (1)
-
Jacek Caban