Re: converting TString pointers
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: converting TString pointers
- From: "xenarcher <nickl@...>" <nickl@...>
- Date: 2003年2月21日 23:21:45 -0000
--- In lua-l@yahoogroups.com, "xenarcher <nickl@v...>" <nickl@v...>
wrote:
> If I have a pointer to a TString object, is there an easy way to
get
> the corresponding character array? (i.e.: the corresponding char *
> object)
Whoops. Never mind, I figured it out:
(char *)(t + 1)
where t is the TString pointer.