Hottest Free Downloads - DownloadPipe.com Over 197,000 downloads! Bookmark Now!
DownloadPipe.com - New Downloads Every Minute
 SEARCH:
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Standard lib for unicode

 
Goto page 1, 2
   Mac (Home) -> Programmer Code RSS
Next:  Cannot lunch application in debug mode  
Author Message
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 1) Posted: Mon Sep 12, 2005 8:42 am
Post subject: Standard lib for unicode
Archived from groups: comp>sys>mac>programmer>codewarrior (more info?)

Is there any standard lib like strncpy,,, that handle Unicode version?

Thanks
Back to top
Login to vote
Ron L

External


Since: Aug 01, 2005
Posts: 52



(Msg. 2) Posted: Mon Sep 12, 2005 2:50 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <1126528720.141759.RemoveThis@www.vif.com>,
"Denis @ TheOffice" <denisco.RemoveThis@ica.net> wrote:

>Is there any standard lib like strncpy,,, that handle Unicode version?
>
>Thanks
>
>

Wide variety, look in MSL C Reference for all the wide string functions.

Ron

--
CodeWarrior Community Forum is a free online resource for developers
to discuss CodeWarrior topics with other users and our staff
-- http://www.codewarrior.com/community --

Ron Liechty - ron.liechty.RemoveThis@freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 3) Posted: Mon Sep 12, 2005 3:21 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Yes, I did and it raise two problems:

1- when I include wtype.h and wstring.h it does not compile because there is a multiple definition
for wchar_t.
One is define as long and the other as short...

2- many of equivalent from type and string.h are not there?

Thanks



"Ron L" <ron.liechty DeleteThis @freescale.com> wrote in message
news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
> In article <1126528720.141759 DeleteThis @www.vif.com>,
> "Denis @ TheOffice" <denisco DeleteThis @ica.net> wrote:
>
> >Is there any standard lib like strncpy,,, that handle Unicode version?
> >
> >Thanks
> >
> >
>
> Wide variety, look in MSL C Reference for all the wide string functions.
>
> Ron
>
> --
> CodeWarrior Community Forum is a free online resource for developers
> to discuss CodeWarrior topics with other users and our staff
> -- http://www.codewarrior.com/community --
>
> Ron Liechty - ron.liechty DeleteThis @freescale.com - http://www.codewarrior.com
Back to top
Login to vote
Ron L

External


Since: Aug 01, 2005
Posts: 52



(Msg. 4) Posted: Tue Sep 13, 2005 1:41 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <1126552642.923976.DeleteThis@www.vif.com>,
"Denis @ TheOffice" <denisco.DeleteThis@ica.net> wrote:

>Yes, I did and it raise two problems:
>
>1- when I include wtype.h and wstring.h it does not compile because there is
>a multiple definition
>for wchar_t.

I don't know what wtype.h is but wctype.h and wchar.h both work fine
together for me.

ansiPprefix.mach.h is the file for this.

#ifndef _MSL_WCHAR_T_TYPE
#if defined(__MWERKS__)
#if __option(ushort_wchar_t)
#define _MSL_WCHAR_T_TYPE unsigned short
#else
#define _MSL_WCHAR_T_TYPE int
#endif
#else
#define _MSL_WCHAR_T_TYPE int
#endif
#endif

>One is define as long and the other as short...
>
>2- many of equivalent from type and string.h are not there?

wcsncpy is there.


Ron
>
>
>
>"Ron L" <ron.liechty.DeleteThis@freescale.com> wrote in message
>news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
>> In article <1126528720.141759.DeleteThis@www.vif.com>,
>> "Denis @ TheOffice" <denisco.DeleteThis@ica.net> wrote:
>>
>> >Is there any standard lib like strncpy,,, that handle Unicode version?
>> >
>> >Thanks
>> >
>> >
>>
>> Wide variety, look in MSL C Reference for all the wide string functions.
>>
>> Ron
>>
>> --
>> CodeWarrior Community Forum is a free online resource for developers
>> to discuss CodeWarrior topics with other users and our staff
>> -- http://www.codewarrior.com/community --
>>
>> Ron Liechty - ron.liechty.DeleteThis@freescale.com - http://www.codewarrior.com
>
>

--
CodeWarrior Community Forum is a free online resource for developers
to discuss CodeWarrior topics with other users and our staff
-- http://www.codewarrior.com/community --

Ron Liechty - ron.liechty.DeleteThis@freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 5) Posted: Tue Sep 13, 2005 2:38 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Sorry I just misstyped the c.

Here in wCtype.h at line 96


#ifndef _WCTYPE_T
typedef unsigned long wctype_t;
#define _WCTYPE_T
#endif

And here in ansi.h at line 55

#ifndef _BSD_WCHAR_T_DEFINED_
#define _BSD_WCHAR_T_DEFINED_
....

typedef wchar_t wctype_t;
typedef int mbstate_t;
typedef wchar_t Wint_t;


Those are two different type...





"Ron L" <ron.liechty.RemoveThis@freescale.com> wrote in message
news:ron.liechty-5DA098.13412313092005@news.newsguy.com...
> In article <1126552642.923976.RemoveThis@www.vif.com>,
> "Denis @ TheOffice" <denisco.RemoveThis@ica.net> wrote:
>
> >Yes, I did and it raise two problems:
> >
> >1- when I include wtype.h and wstring.h it does not compile because there is
> >a multiple definition
> >for wchar_t.
>
> I don't know what wtype.h is but wctype.h and wchar.h both work fine
> together for me.
>
> ansiPprefix.mach.h is the file for this.
>
> #ifndef _MSL_WCHAR_T_TYPE
> #if defined(__MWERKS__)
> #if __option(ushort_wchar_t)
> #define _MSL_WCHAR_T_TYPE unsigned short
> #else
> #define _MSL_WCHAR_T_TYPE int
> #endif
> #else
> #define _MSL_WCHAR_T_TYPE int
> #endif
> #endif
>
> >One is define as long and the other as short...
> >
> >2- many of equivalent from type and string.h are not there?
>
> wcsncpy is there.
>
>
> Ron
> >
> >
> >
> >"Ron L" <ron.liechty.RemoveThis@freescale.com> wrote in message
> >news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
> >> In article <1126528720.141759.RemoveThis@www.vif.com>,
> >> "Denis @ TheOffice" <denisco.RemoveThis@ica.net> wrote:
> >>
> >> >Is there any standard lib like strncpy,,, that handle Unicode version?
> >> >
> >> >Thanks
> >> >
> >> >
> >>
> >> Wide variety, look in MSL C Reference for all the wide string functions.
> >>
> >> Ron
> >>
> >> --
> >> CodeWarrior Community Forum is a free online resource for developers
> >> to discuss CodeWarrior topics with other users and our staff
> >> -- http://www.codewarrior.com/community --
> >>
> >> Ron Liechty - ron.liechty.RemoveThis@freescale.com - http://www.codewarrior.com
> >
> >
>
> --
> CodeWarrior Community Forum is a free online resource for developers
> to discuss CodeWarrior topics with other users and our staff
> -- http://www.codewarrior.com/community --
>
> Ron Liechty - ron.liechty.RemoveThis@freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 6) Posted: Wed Sep 14, 2005 3:13 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Now what's next Ron ?

Should I just #define _WCTYPE_T
in between the 2 files.

PLUS : Which one is right LONG or SHORT ?

Denis


"Denis @ TheOffice" <denisco.DeleteThis@ica.net> wrote in message news:1126636489.639002@www.vif.com...
> Sorry I just misstyped the c.
>
> Here in wCtype.h at line 96
>
>
> #ifndef _WCTYPE_T
> typedef unsigned long wctype_t;
> #define _WCTYPE_T
> #endif
>
> And here in ansi.h at line 55
>
> #ifndef _BSD_WCHAR_T_DEFINED_
> #define _BSD_WCHAR_T_DEFINED_
> ...
>
> typedef wchar_t wctype_t;
> typedef int mbstate_t;
> typedef wchar_t Wint_t;
>
>
> Those are two different type...
>
>
>
>
>
> "Ron L" <ron.liechty.DeleteThis@freescale.com> wrote in message
> news:ron.liechty-5DA098.13412313092005@news.newsguy.com...
> > In article <1126552642.923976.DeleteThis@www.vif.com>,
> > "Denis @ TheOffice" <denisco.DeleteThis@ica.net> wrote:
> >
> > >Yes, I did and it raise two problems:
> > >
> > >1- when I include wtype.h and wstring.h it does not compile because there is
> > >a multiple definition
> > >for wchar_t.
> >
> > I don't know what wtype.h is but wctype.h and wchar.h both work fine
> > together for me.
> >
> > ansiPprefix.mach.h is the file for this.
> >
> > #ifndef _MSL_WCHAR_T_TYPE
> > #if defined(__MWERKS__)
> > #if __option(ushort_wchar_t)
> > #define _MSL_WCHAR_T_TYPE unsigned short
> > #else
> > #define _MSL_WCHAR_T_TYPE int
> > #endif
> > #else
> > #define _MSL_WCHAR_T_TYPE int
> > #endif
> > #endif
> >
> > >One is define as long and the other as short...
> > >
> > >2- many of equivalent from type and string.h are not there?
> >
> > wcsncpy is there.
> >
> >
> > Ron
> > >
> > >
> > >
> > >"Ron L" <ron.liechty.DeleteThis@freescale.com> wrote in message
> > >news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
> > >> In article <1126528720.141759.DeleteThis@www.vif.com>,
> > >> "Denis @ TheOffice" <denisco.DeleteThis@ica.net> wrote:
> > >>
> > >> >Is there any standard lib like strncpy,,, that handle Unicode version?
> > >> >
> > >> >Thanks
> > >> >
> > >> >
> > >>
> > >> Wide variety, look in MSL C Reference for all the wide string functions.
> > >>
> > >> Ron
> > >>
> > >> --
> > >> CodeWarrior Community Forum is a free online resource for developers
> > >> to discuss CodeWarrior topics with other users and our staff
> > >> -- http://www.codewarrior.com/community --
> > >>
> > >> Ron Liechty - ron.liechty.DeleteThis@freescale.com - http://www.codewarrior.com
> > >
> > >
> >
> > --
> > CodeWarrior Community Forum is a free online resource for developers
> > to discuss CodeWarrior topics with other users and our staff
> > -- http://www.codewarrior.com/community --
> >
> > Ron Liechty - ron.liechty.DeleteThis@freescale.com - http://www.codewarrior.com
>
>
Back to top
Login to vote
Ron L

External


Since: Aug 01, 2005
Posts: 52



(Msg. 7) Posted: Wed Sep 14, 2005 4:25 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <1126725403.487041.TakeThisOut@www.vif.com>,
"Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:

>Now what's next Ron ?
>
>Should I just #define _WCTYPE_T
>in between the 2 files.
>
>PLUS : Which one is right LONG or SHORT ?

If you have the BSD prefix file it is one if you have the MSL prefix
file it is the other. they are conditioned to check wheter you are
using MSL. If you get a redefined error you probably don't have a
prefix file but are including MSL in the project.

Both are correct, it is an implementation option and as long as you use
the same headers all the way through it doesn't matter and does not have
a problem.

Ron

>
>"Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote in message
>news:1126636489.639002@www.vif.com...
>> Sorry I just misstyped the c.
>>
>> Here in wCtype.h at line 96
>>
>>
>> #ifndef _WCTYPE_T
>> typedef unsigned long wctype_t;
>> #define _WCTYPE_T
>> #endif
>>
>> And here in ansi.h at line 55
>>
>> #ifndef _BSD_WCHAR_T_DEFINED_
>> #define _BSD_WCHAR_T_DEFINED_
>> ...
>>
>> typedef wchar_t wctype_t;
>> typedef int mbstate_t;
>> typedef wchar_t Wint_t;
>>
>>
>> Those are two different type...
>>
>>
>>
>>
>>
>> "Ron L" <ron.liechty.TakeThisOut@freescale.com> wrote in message
>> news:ron.liechty-5DA098.13412313092005@news.newsguy.com...
>> > In article <1126552642.923976.TakeThisOut@www.vif.com>,
>> > "Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:
>> >
>> > >Yes, I did and it raise two problems:
>> > >
>> > >1- when I include wtype.h and wstring.h it does not compile because
>> > >there is
>> > >a multiple definition
>> > >for wchar_t.
>> >
>> > I don't know what wtype.h is but wctype.h and wchar.h both work fine
>> > together for me.
>> >
>> > ansiPprefix.mach.h is the file for this.
>> >
>> > #ifndef _MSL_WCHAR_T_TYPE
>> > #if defined(__MWERKS__)
>> > #if __option(ushort_wchar_t)
>> > #define _MSL_WCHAR_T_TYPE unsigned short
>> > #else
>> > #define _MSL_WCHAR_T_TYPE int
>> > #endif
>> > #else
>> > #define _MSL_WCHAR_T_TYPE int
>> > #endif
>> > #endif
>> >
>> > >One is define as long and the other as short...
>> > >
>> > >2- many of equivalent from type and string.h are not there?
>> >
>> > wcsncpy is there.
>> >
>> >
>> > Ron
>> > >
>> > >
>> > >
>> > >"Ron L" <ron.liechty.TakeThisOut@freescale.com> wrote in message
>> > >news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
>> > >> In article <1126528720.141759.TakeThisOut@www.vif.com>,
>> > >> "Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:
>> > >>
>> > >> >Is there any standard lib like strncpy,,, that handle Unicode version?
>> > >> >
>> > >> >Thanks
>> > >> >
>> > >> >
>> > >>
>> > >> Wide variety, look in MSL C Reference for all the wide string
>> > >> functions.
>> > >>
>> > >> Ron
>> > >>
>> > >> --
>> > >> CodeWarrior Community Forum is a free online resource for developers
>> > >> to discuss CodeWarrior topics with other users and our staff
>> > >> -- http://www.codewarrior.com/community --
>> > >>
>> > >> Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
>> > >
>> > >
>> >
>> > --
>> > CodeWarrior Community Forum is a free online resource for developers
>> > to discuss CodeWarrior topics with other users and our staff
>> > -- http://www.codewarrior.com/community --
>> >
>> > Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
>>
>>
>
>

--
CodeWarrior Community Forum is a free online resource for developers
to discuss CodeWarrior topics with other users and our staff
-- http://www.codewarrior.com/community --

Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 8) Posted: Wed Sep 14, 2005 5:35 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Yeah, but that just bring me back to square one.

I need the standard lib say strlen and I need wcslen both at the same time.




"Ron L" <ron.liechty.TakeThisOut@freescale.com> wrote in message
news:ron.liechty-58267B.16252014092005@news.newsguy.com...
> In article <1126725403.487041.TakeThisOut@www.vif.com>,
> "Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:
>
> >Now what's next Ron ?
> >
> >Should I just #define _WCTYPE_T
> >in between the 2 files.
> >
> >PLUS : Which one is right LONG or SHORT ?
>
> If you have the BSD prefix file it is one if you have the MSL prefix
> file it is the other. they are conditioned to check wheter you are
> using MSL. If you get a redefined error you probably don't have a
> prefix file but are including MSL in the project.
>
> Both are correct, it is an implementation option and as long as you use
> the same headers all the way through it doesn't matter and does not have
> a problem.
>
> Ron
>
> >
> >"Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote in message
> >news:1126636489.639002@www.vif.com...
> >> Sorry I just misstyped the c.
> >>
> >> Here in wCtype.h at line 96
> >>
> >>
> >> #ifndef _WCTYPE_T
> >> typedef unsigned long wctype_t;
> >> #define _WCTYPE_T
> >> #endif
> >>
> >> And here in ansi.h at line 55
> >>
> >> #ifndef _BSD_WCHAR_T_DEFINED_
> >> #define _BSD_WCHAR_T_DEFINED_
> >> ...
> >>
> >> typedef wchar_t wctype_t;
> >> typedef int mbstate_t;
> >> typedef wchar_t Wint_t;
> >>
> >>
> >> Those are two different type...
> >>
> >>
> >>
> >>
> >>
> >> "Ron L" <ron.liechty.TakeThisOut@freescale.com> wrote in message
> >> news:ron.liechty-5DA098.13412313092005@news.newsguy.com...
> >> > In article <1126552642.923976.TakeThisOut@www.vif.com>,
> >> > "Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:
> >> >
> >> > >Yes, I did and it raise two problems:
> >> > >
> >> > >1- when I include wtype.h and wstring.h it does not compile because
> >> > >there is
> >> > >a multiple definition
> >> > >for wchar_t.
> >> >
> >> > I don't know what wtype.h is but wctype.h and wchar.h both work fine
> >> > together for me.
> >> >
> >> > ansiPprefix.mach.h is the file for this.
> >> >
> >> > #ifndef _MSL_WCHAR_T_TYPE
> >> > #if defined(__MWERKS__)
> >> > #if __option(ushort_wchar_t)
> >> > #define _MSL_WCHAR_T_TYPE unsigned short
> >> > #else
> >> > #define _MSL_WCHAR_T_TYPE int
> >> > #endif
> >> > #else
> >> > #define _MSL_WCHAR_T_TYPE int
> >> > #endif
> >> > #endif
> >> >
> >> > >One is define as long and the other as short...
> >> > >
> >> > >2- many of equivalent from type and string.h are not there?
> >> >
> >> > wcsncpy is there.
> >> >
> >> >
> >> > Ron
> >> > >
> >> > >
> >> > >
> >> > >"Ron L" <ron.liechty.TakeThisOut@freescale.com> wrote in message
> >> > >news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
> >> > >> In article <1126528720.141759.TakeThisOut@www.vif.com>,
> >> > >> "Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:
> >> > >>
> >> > >> >Is there any standard lib like strncpy,,, that handle Unicode version?
> >> > >> >
> >> > >> >Thanks
> >> > >> >
> >> > >> >
> >> > >>
> >> > >> Wide variety, look in MSL C Reference for all the wide string
> >> > >> functions.
> >> > >>
> >> > >> Ron
> >> > >>
> >> > >> --
> >> > >> CodeWarrior Community Forum is a free online resource for developers
> >> > >> to discuss CodeWarrior topics with other users and our staff
> >> > >> -- http://www.codewarrior.com/community --
> >> > >>
> >> > >> Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
> >> > >
> >> > >
> >> >
> >> > --
> >> > CodeWarrior Community Forum is a free online resource for developers
> >> > to discuss CodeWarrior topics with other users and our staff
> >> > -- http://www.codewarrior.com/community --
> >> >
> >> > Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
> >>
> >>
> >
> >
>
> --
> CodeWarrior Community Forum is a free online resource for developers
> to discuss CodeWarrior topics with other users and our staff
> -- http://www.codewarrior.com/community --
>
> Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 9) Posted: Thu Sep 15, 2005 9:45 am
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I am a bit confuse with, as I am still relatively new to that concept of prefix...

> If you have the BSD prefix file it is one if you have the MSL prefix
> file it is the other. they are conditioned to check wheter you are
> using MSL. If you get a redefined error you probably don't have a
> prefix file but are including MSL in the project.
>

Are you suggesting to remove or use a certain prefix file?
Which one will allow me to use both.






"Ron L" <ron.liechty RemoveThis @freescale.com> wrote in message
news:ron.liechty-58267B.16252014092005@news.newsguy.com...
> In article <1126725403.487041 RemoveThis @www.vif.com>,
> "Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:
>
> >Now what's next Ron ?
> >
> >Should I just #define _WCTYPE_T
> >in between the 2 files.
> >
> >PLUS : Which one is right LONG or SHORT ?
>
> If you have the BSD prefix file it is one if you have the MSL prefix
> file it is the other. they are conditioned to check wheter you are
> using MSL. If you get a redefined error you probably don't have a
> prefix file but are including MSL in the project.
>
> Both are correct, it is an implementation option and as long as you use
> the same headers all the way through it doesn't matter and does not have
> a problem.
>
> Ron
>
> >
> >"Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote in message
> >news:1126636489.639002@www.vif.com...
> >> Sorry I just misstyped the c.
> >>
> >> Here in wCtype.h at line 96
> >>
> >>
> >> #ifndef _WCTYPE_T
> >> typedef unsigned long wctype_t;
> >> #define _WCTYPE_T
> >> #endif
> >>
> >> And here in ansi.h at line 55
> >>
> >> #ifndef _BSD_WCHAR_T_DEFINED_
> >> #define _BSD_WCHAR_T_DEFINED_
> >> ...
> >>
> >> typedef wchar_t wctype_t;
> >> typedef int mbstate_t;
> >> typedef wchar_t Wint_t;
> >>
> >>
> >> Those are two different type...
> >>
> >>
> >>
> >>
> >>
> >> "Ron L" <ron.liechty RemoveThis @freescale.com> wrote in message
> >> news:ron.liechty-5DA098.13412313092005@news.newsguy.com...
> >> > In article <1126552642.923976 RemoveThis @www.vif.com>,
> >> > "Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:
> >> >
> >> > >Yes, I did and it raise two problems:
> >> > >
> >> > >1- when I include wtype.h and wstring.h it does not compile because
> >> > >there is
> >> > >a multiple definition
> >> > >for wchar_t.
> >> >
> >> > I don't know what wtype.h is but wctype.h and wchar.h both work fine
> >> > together for me.
> >> >
> >> > ansiPprefix.mach.h is the file for this.
> >> >
> >> > #ifndef _MSL_WCHAR_T_TYPE
> >> > #if defined(__MWERKS__)
> >> > #if __option(ushort_wchar_t)
> >> > #define _MSL_WCHAR_T_TYPE unsigned short
> >> > #else
> >> > #define _MSL_WCHAR_T_TYPE int
> >> > #endif
> >> > #else
> >> > #define _MSL_WCHAR_T_TYPE int
> >> > #endif
> >> > #endif
> >> >
> >> > >One is define as long and the other as short...
> >> > >
> >> > >2- many of equivalent from type and string.h are not there?
> >> >
> >> > wcsncpy is there.
> >> >
> >> >
> >> > Ron
> >> > >
> >> > >
> >> > >
> >> > >"Ron L" <ron.liechty RemoveThis @freescale.com> wrote in message
> >> > >news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
> >> > >> In article <1126528720.141759 RemoveThis @www.vif.com>,
> >> > >> "Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:
> >> > >>
> >> > >> >Is there any standard lib like strncpy,,, that handle Unicode version?
> >> > >> >
> >> > >> >Thanks
> >> > >> >
> >> > >> >
> >> > >>
> >> > >> Wide variety, look in MSL C Reference for all the wide string
> >> > >> functions.
> >> > >>
> >> > >> Ron
> >> > >>
> >> > >> --
> >> > >> CodeWarrior Community Forum is a free online resource for developers
> >> > >> to discuss CodeWarrior topics with other users and our staff
> >> > >> -- http://www.codewarrior.com/community --
> >> > >>
> >> > >> Ron Liechty - ron.liechty RemoveThis @freescale.com - http://www.codewarrior.com
> >> > >
> >> > >
> >> >
> >> > --
> >> > CodeWarrior Community Forum is a free online resource for developers
> >> > to discuss CodeWarrior topics with other users and our staff
> >> > -- http://www.codewarrior.com/community --
> >> >
> >> > Ron Liechty - ron.liechty RemoveThis @freescale.com - http://www.codewarrior.com
> >>
> >>
> >
> >
>
> --
> CodeWarrior Community Forum is a free online resource for developers
> to discuss CodeWarrior topics with other users and our staff
> -- http://www.codewarrior.com/community --
>
> Ron Liechty - ron.liechty RemoveThis @freescale.com - http://www.codewarrior.com
Back to top
Login to vote
Ron L

External


Since: Aug 01, 2005
Posts: 52



(Msg. 10) Posted: Thu Sep 15, 2005 12:08 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <1126733503.47286.TakeThisOut@www.vif.com>,
"Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:

>Yeah, but that just bring me back to square one.
>
>I need the standard lib say strlen and I need wcslen both at the same time.

And there is absolutely no problem in doing that.

USE MSL C Library use the prefix file that has MSL that starts it and
make sure that /include is below MSL in the access paths.

Your problem is not with including wide string and standard libs your
problem is including headers from BSD and MSL at the stame time.

Ron
>
>
>"Ron L" <ron.liechty.TakeThisOut@freescale.com> wrote in message
>news:ron.liechty-58267B.16252014092005@news.newsguy.com...
>> In article <1126725403.487041.TakeThisOut@www.vif.com>,
>> "Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:
>>
>> >Now what's next Ron ?
>> >
>> >Should I just #define _WCTYPE_T
>> >in between the 2 files.
>> >
>> >PLUS : Which one is right LONG or SHORT ?
>>
>> If you have the BSD prefix file it is one if you have the MSL prefix
>> file it is the other. they are conditioned to check wheter you are
>> using MSL. If you get a redefined error you probably don't have a
>> prefix file but are including MSL in the project.
>>
>> Both are correct, it is an implementation option and as long as you use
>> the same headers all the way through it doesn't matter and does not have
>> a problem.
>>
>> Ron
>>
>> >
>> >"Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote in message
>> >news:1126636489.639002@www.vif.com...
>> >> Sorry I just misstyped the c.
>> >>
>> >> Here in wCtype.h at line 96
>> >>
>> >>
>> >> #ifndef _WCTYPE_T
>> >> typedef unsigned long wctype_t;
>> >> #define _WCTYPE_T
>> >> #endif
>> >>
>> >> And here in ansi.h at line 55
>> >>
>> >> #ifndef _BSD_WCHAR_T_DEFINED_
>> >> #define _BSD_WCHAR_T_DEFINED_
>> >> ...
>> >>
>> >> typedef wchar_t wctype_t;
>> >> typedef int mbstate_t;
>> >> typedef wchar_t Wint_t;
>> >>
>> >>
>> >> Those are two different type...
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> "Ron L" <ron.liechty.TakeThisOut@freescale.com> wrote in message
>> >> news:ron.liechty-5DA098.13412313092005@news.newsguy.com...
>> >> > In article <1126552642.923976.TakeThisOut@www.vif.com>,
>> >> > "Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:
>> >> >
>> >> > >Yes, I did and it raise two problems:
>> >> > >
>> >> > >1- when I include wtype.h and wstring.h it does not compile because
>> >> > >there is
>> >> > >a multiple definition
>> >> > >for wchar_t.
>> >> >
>> >> > I don't know what wtype.h is but wctype.h and wchar.h both work fine
>> >> > together for me.
>> >> >
>> >> > ansiPprefix.mach.h is the file for this.
>> >> >
>> >> > #ifndef _MSL_WCHAR_T_TYPE
>> >> > #if defined(__MWERKS__)
>> >> > #if __option(ushort_wchar_t)
>> >> > #define _MSL_WCHAR_T_TYPE unsigned short
>> >> > #else
>> >> > #define _MSL_WCHAR_T_TYPE int
>> >> > #endif
>> >> > #else
>> >> > #define _MSL_WCHAR_T_TYPE int
>> >> > #endif
>> >> > #endif
>> >> >
>> >> > >One is define as long and the other as short...
>> >> > >
>> >> > >2- many of equivalent from type and string.h are not there?
>> >> >
>> >> > wcsncpy is there.
>> >> >
>> >> >
>> >> > Ron
>> >> > >
>> >> > >
>> >> > >
>> >> > >"Ron L" <ron.liechty.TakeThisOut@freescale.com> wrote in message
>> >> > >news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
>> >> > >> In article <1126528720.141759.TakeThisOut@www.vif.com>,
>> >> > >> "Denis @ TheOffice" <denisco.TakeThisOut@ica.net> wrote:
>> >> > >>
>> >> > >> >Is there any standard lib like strncpy,,, that handle Unicode
>> >> > >> >version?
>> >> > >> >
>> >> > >> >Thanks
>> >> > >> >
>> >> > >> >
>> >> > >>
>> >> > >> Wide variety, look in MSL C Reference for all the wide string
>> >> > >> functions.
>> >> > >>
>> >> > >> Ron
>> >> > >>
>> >> > >> --
>> >> > >> CodeWarrior Community Forum is a free online resource for developers
>> >> > >> to discuss CodeWarrior topics with other users and our staff
>> >> > >> -- http://www.codewarrior.com/community --
>> >> > >>
>> >> > >> Ron Liechty - ron.liechty.TakeThisOut@freescale.com -
>> >> > >> http://www.codewarrior.com
>> >> > >
>> >> > >
>> >> >
>> >> > --
>> >> > CodeWarrior Community Forum is a free online resource for developers
>> >> > to discuss CodeWarrior topics with other users and our staff
>> >> > -- http://www.codewarrior.com/community --
>> >> >
>> >> > Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
>> >>
>> >>
>> >
>> >
>>
>> --
>> CodeWarrior Community Forum is a free online resource for developers
>> to discuss CodeWarrior topics with other users and our staff
>> -- http://www.codewarrior.com/community --
>>
>> Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
>
>

--
CodeWarrior Community Forum is a free online resource for developers
to discuss CodeWarrior topics with other users and our staff
-- http://www.codewarrior.com/community --

Ron Liechty - ron.liechty.TakeThisOut@freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 11) Posted: Thu Sep 15, 2005 12:28 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

There is that enable wchar_t support in the project setting panel.

Should I remove this in order to use the wctype.h?



"Ron L" <ron.liechty DeleteThis @freescale.com> wrote in message
news:ron.liechty-58267B.16252014092005@news.newsguy.com...
> In article <1126725403.487041 DeleteThis @www.vif.com>,
> "Denis @ TheOffice" <denisco DeleteThis @ica.net> wrote:
>
> >Now what's next Ron ?
> >
> >Should I just #define _WCTYPE_T
> >in between the 2 files.
> >
> >PLUS : Which one is right LONG or SHORT ?
>
> If you have the BSD prefix file it is one if you have the MSL prefix
> file it is the other. they are conditioned to check wheter you are
> using MSL. If you get a redefined error you probably don't have a
> prefix file but are including MSL in the project.
>
> Both are correct, it is an implementation option and as long as you use
> the same headers all the way through it doesn't matter and does not have
> a problem.
>
> Ron
>
> >
> >"Denis @ TheOffice" <denisco DeleteThis @ica.net> wrote in message
> >news:1126636489.639002@www.vif.com...
> >> Sorry I just misstyped the c.
> >>
> >> Here in wCtype.h at line 96
> >>
> >>
> >> #ifndef _WCTYPE_T
> >> typedef unsigned long wctype_t;
> >> #define _WCTYPE_T
> >> #endif
> >>
> >> And here in ansi.h at line 55
> >>
> >> #ifndef _BSD_WCHAR_T_DEFINED_
> >> #define _BSD_WCHAR_T_DEFINED_
> >> ...
> >>
> >> typedef wchar_t wctype_t;
> >> typedef int mbstate_t;
> >> typedef wchar_t Wint_t;
> >>
> >>
> >> Those are two different type...
> >>
> >>
> >>
> >>
> >>
> >> "Ron L" <ron.liechty DeleteThis @freescale.com> wrote in message
> >> news:ron.liechty-5DA098.13412313092005@news.newsguy.com...
> >> > In article <1126552642.923976 DeleteThis @www.vif.com>,
> >> > "Denis @ TheOffice" <denisco DeleteThis @ica.net> wrote:
> >> >
> >> > >Yes, I did and it raise two problems:
> >> > >
> >> > >1- when I include wtype.h and wstring.h it does not compile because
> >> > >there is
> >> > >a multiple definition
> >> > >for wchar_t.
> >> >
> >> > I don't know what wtype.h is but wctype.h and wchar.h both work fine
> >> > together for me.
> >> >
> >> > ansiPprefix.mach.h is the file for this.
> >> >
> >> > #ifndef _MSL_WCHAR_T_TYPE
> >> > #if defined(__MWERKS__)
> >> > #if __option(ushort_wchar_t)
> >> > #define _MSL_WCHAR_T_TYPE unsigned short
> >> > #else
> >> > #define _MSL_WCHAR_T_TYPE int
> >> > #endif
> >> > #else
> >> > #define _MSL_WCHAR_T_TYPE int
> >> > #endif
> >> > #endif
> >> >
> >> > >One is define as long and the other as short...
> >> > >
> >> > >2- many of equivalent from type and string.h are not there?
> >> >
> >> > wcsncpy is there.
> >> >
> >> >
> >> > Ron
> >> > >
> >> > >
> >> > >
> >> > >"Ron L" <ron.liechty DeleteThis @freescale.com> wrote in message
> >> > >news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
> >> > >> In article <1126528720.141759 DeleteThis @www.vif.com>,
> >> > >> "Denis @ TheOffice" <denisco DeleteThis @ica.net> wrote:
> >> > >>
> >> > >> >Is there any standard lib like strncpy,,, that handle Unicode version?
> >> > >> >
> >> > >> >Thanks
> >> > >> >
> >> > >> >
> >> > >>
> >> > >> Wide variety, look in MSL C Reference for all the wide string
> >> > >> functions.
> >> > >>
> >> > >> Ron
> >> > >>
> >> > >> --
> >> > >> CodeWarrior Community Forum is a free online resource for developers
> >> > >> to discuss CodeWarrior topics with other users and our staff
> >> > >> -- http://www.codewarrior.com/community --
> >> > >>
> >> > >> Ron Liechty - ron.liechty DeleteThis @freescale.com - http://www.codewarrior.com
> >> > >
> >> > >
> >> >
> >> > --
> >> > CodeWarrior Community Forum is a free online resource for developers
> >> > to discuss CodeWarrior topics with other users and our staff
> >> > -- http://www.codewarrior.com/community --
> >> >
> >> > Ron Liechty - ron.liechty DeleteThis @freescale.com - http://www.codewarrior.com
> >>
> >>
> >
> >
>
> --
> CodeWarrior Community Forum is a free online resource for developers
> to discuss CodeWarrior topics with other users and our staff
> -- http://www.codewarrior.com/community --
>
> Ron Liechty - ron.liechty DeleteThis @freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 12) Posted: Thu Sep 15, 2005 1:31 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

It does not work or I am missing an info. Can you give me a step through or an example project,
please?


"Ron L" <ron.liechty RemoveThis @freescale.com> wrote in message
news:ron.liechty-6B01DD.12081915092005@news.newsguy.com...
> In article <1126733503.47286 RemoveThis @www.vif.com>,
> "Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:
>
> >Yeah, but that just bring me back to square one.
> >
> >I need the standard lib say strlen and I need wcslen both at the same time.
>
> And there is absolutely no problem in doing that.
>
> USE MSL C Library use the prefix file that has MSL that starts it and
> make sure that /include is below MSL in the access paths.
>
> Your problem is not with including wide string and standard libs your
> problem is including headers from BSD and MSL at the stame time.
>
> Ron
> >
> >
> >"Ron L" <ron.liechty RemoveThis @freescale.com> wrote in message
> >news:ron.liechty-58267B.16252014092005@news.newsguy.com...
> >> In article <1126725403.487041 RemoveThis @www.vif.com>,
> >> "Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:
> >>
> >> >Now what's next Ron ?
> >> >
> >> >Should I just #define _WCTYPE_T
> >> >in between the 2 files.
> >> >
> >> >PLUS : Which one is right LONG or SHORT ?
> >>
> >> If you have the BSD prefix file it is one if you have the MSL prefix
> >> file it is the other. they are conditioned to check wheter you are
> >> using MSL. If you get a redefined error you probably don't have a
> >> prefix file but are including MSL in the project.
> >>
> >> Both are correct, it is an implementation option and as long as you use
> >> the same headers all the way through it doesn't matter and does not have
> >> a problem.
> >>
> >> Ron
> >>
> >> >
> >> >"Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote in message
> >> >news:1126636489.639002@www.vif.com...
> >> >> Sorry I just misstyped the c.
> >> >>
> >> >> Here in wCtype.h at line 96
> >> >>
> >> >>
> >> >> #ifndef _WCTYPE_T
> >> >> typedef unsigned long wctype_t;
> >> >> #define _WCTYPE_T
> >> >> #endif
> >> >>
> >> >> And here in ansi.h at line 55
> >> >>
> >> >> #ifndef _BSD_WCHAR_T_DEFINED_
> >> >> #define _BSD_WCHAR_T_DEFINED_
> >> >> ...
> >> >>
> >> >> typedef wchar_t wctype_t;
> >> >> typedef int mbstate_t;
> >> >> typedef wchar_t Wint_t;
> >> >>
> >> >>
> >> >> Those are two different type...
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> "Ron L" <ron.liechty RemoveThis @freescale.com> wrote in message
> >> >> news:ron.liechty-5DA098.13412313092005@news.newsguy.com...
> >> >> > In article <1126552642.923976 RemoveThis @www.vif.com>,
> >> >> > "Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:
> >> >> >
> >> >> > >Yes, I did and it raise two problems:
> >> >> > >
> >> >> > >1- when I include wtype.h and wstring.h it does not compile because
> >> >> > >there is
> >> >> > >a multiple definition
> >> >> > >for wchar_t.
> >> >> >
> >> >> > I don't know what wtype.h is but wctype.h and wchar.h both work fine
> >> >> > together for me.
> >> >> >
> >> >> > ansiPprefix.mach.h is the file for this.
> >> >> >
> >> >> > #ifndef _MSL_WCHAR_T_TYPE
> >> >> > #if defined(__MWERKS__)
> >> >> > #if __option(ushort_wchar_t)
> >> >> > #define _MSL_WCHAR_T_TYPE unsigned short
> >> >> > #else
> >> >> > #define _MSL_WCHAR_T_TYPE int
> >> >> > #endif
> >> >> > #else
> >> >> > #define _MSL_WCHAR_T_TYPE int
> >> >> > #endif
> >> >> > #endif
> >> >> >
> >> >> > >One is define as long and the other as short...
> >> >> > >
> >> >> > >2- many of equivalent from type and string.h are not there?
> >> >> >
> >> >> > wcsncpy is there.
> >> >> >
> >> >> >
> >> >> > Ron
> >> >> > >
> >> >> > >
> >> >> > >
> >> >> > >"Ron L" <ron.liechty RemoveThis @freescale.com> wrote in message
> >> >> > >news:ron.liechty-45D1A6.14505312092005@news.newsguy.com...
> >> >> > >> In article <1126528720.141759 RemoveThis @www.vif.com>,
> >> >> > >> "Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:
> >> >> > >>
> >> >> > >> >Is there any standard lib like strncpy,,, that handle Unicode
> >> >> > >> >version?
> >> >> > >> >
> >> >> > >> >Thanks
> >> >> > >> >
> >> >> > >> >
> >> >> > >>
> >> >> > >> Wide variety, look in MSL C Reference for all the wide string
> >> >> > >> functions.
> >> >> > >>
> >> >> > >> Ron
> >> >> > >>
> >> >> > >> --
> >> >> > >> CodeWarrior Community Forum is a free online resource for developers
> >> >> > >> to discuss CodeWarrior topics with other users and our staff
> >> >> > >> -- http://www.codewarrior.com/community --
> >> >> > >>
> >> >> > >> Ron Liechty - ron.liechty RemoveThis @freescale.com -
> >> >> > >> http://www.codewarrior.com
> >> >> > >
> >> >> > >
> >> >> >
> >> >> > --
> >> >> > CodeWarrior Community Forum is a free online resource for developers
> >> >> > to discuss CodeWarrior topics with other users and our staff
> >> >> > -- http://www.codewarrior.com/community --
> >> >> >
> >> >> > Ron Liechty - ron.liechty RemoveThis @freescale.com - http://www.codewarrior.com
> >> >>
> >> >>
> >> >
> >> >
> >>
> >> --
> >> CodeWarrior Community Forum is a free online resource for developers
> >> to discuss CodeWarrior topics with other users and our staff
> >> -- http://www.codewarrior.com/community --
> >>
> >> Ron Liechty - ron.liechty RemoveThis @freescale.com - http://www.codewarrior.com
> >
> >
>
> --
> CodeWarrior Community Forum is a free online resource for developers
> to discuss CodeWarrior topics with other users and our staff
> -- http://www.codewarrior.com/community --
>
> Ron Liechty - ron.liechty RemoveThis @freescale.com - http://www.codewarrior.com
Back to top
Login to vote
Ron L

External


Since: Aug 01, 2005
Posts: 52



(Msg. 13) Posted: Fri Sep 16, 2005 12:03 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <1126805293.247864 RemoveThis @www.vif.com>,
"Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:

>It does not work or I am missing an info. Can you give me a step through or an
>example project,
>please?

I can not duplicate your error at all. Every stationery and example
should work fine.

All I can say is send me an example project that duplicates this.

Ron

--
CodeWarrior Community Forum is a free online resource for developers
to discuss CodeWarrior topics with other users and our staff
-- http://www.codewarrior.com/community --

Ron Liechty - ron.liechty RemoveThis @freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 14) Posted: Fri Sep 16, 2005 1:01 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

okay, I'll send it direct

Denis

"Ron L" <ron.liechty.RemoveThis@freescale.com> wrote in message
news:ron.liechty-CC6811.12031216092005@news.newsguy.com...
> In article <1126805293.247864.RemoveThis@www.vif.com>,
> "Denis @ TheOffice" <denisco.RemoveThis@ica.net> wrote:
>
> >It does not work or I am missing an info. Can you give me a step through or an
> >example project,
> >please?
>
> I can not duplicate your error at all. Every stationery and example
> should work fine.
>
> All I can say is send me an example project that duplicates this.
>
> Ron
>
> --
> CodeWarrior Community Forum is a free online resource for developers
> to discuss CodeWarrior topics with other users and our staff
> -- http://www.codewarrior.com/community --
>
> Ron Liechty - ron.liechty.RemoveThis@freescale.com - http://www.codewarrior.com
Back to top
Login to vote
denisco

External


Since: Jul 14, 2005
Posts: 55



(Msg. 15) Posted: Mon Sep 19, 2005 12:29 pm
Post subject: Re: Standard lib for unicode [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I have new info in this topic.

Last Friday I bought another Mac with Tiger, and install everything from scratch.
It build/compiles fine.

I went back to 10.3.x old system rebuild all libs.
I am still unable to include that "wCtype.h" What can I do ?

Thanks



"Ron L" <ron.liechty RemoveThis @freescale.com> wrote in message
news:ron.liechty-CC6811.12031216092005@news.newsguy.com...
> In article <1126805293.247864 RemoveThis @www.vif.com>,
> "Denis @ TheOffice" <denisco RemoveThis @ica.net> wrote:
>
> >It does not work or I am missing an info. Can you give me a step through or an
> >example project,
> >please?
>
> I can not duplicate your error at all. Every stationery and example
> should work fine.
>
> All I can say is send me an example project that duplicates this.
>
> Ron
>
> --
> CodeWarrior Community Forum is a free online resource for developers
> to discuss CodeWarrior topics with other users and our staff
> -- http://www.codewarrior.com/community --
>
> Ron Liechty - ron.liechty RemoveThis @freescale.com - http://www.codewarrior.com
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Bug in alloc.c? - I'm getting an infinite loop in alloc.c, which is located in MSL/MSL_C/MSL_Common/Src. This is with CW 9.5. The function is allocate_from_var_pools. There is a do/while loop that searches for a block with the required size to allocate a block of..

Multiply defined symbol: .bss - Hi, when trying to build a dll for Windows using CW9 on MacOS, I get an error message like: Link Error : Multiply defined symbol: .bss in files file1.cpp, file2.cpp The same message with the same filenames is repeated several times, but....

Where next? - Hi folks, All of my recent Mac coding has been Carbon C++, mostly using PowerPlant as a framework. As most of my clients are moving to X and CW's future is, shall we say, uncertain I'm wondering where to look for my future coding setup. I've dabbled....

Does mwcc work on Tiger? - Anybody using the comand line compilers on 10.4? When saving the following simple program as /tmp/x.cpp: int main() { double x = 0.5; return 0; } and trying to compile it with $ mwcc -c /tmp/x.cpp , I get the error message Error :....

Console app "file" selector - Hello, I feel like I've asked this before, but I did a search on the archives and came up short. I've got a console std c app that I'm compiling with CW. When it runs, it pops up a little menu where I can type in some command line arguments (for..
       Mac (Home) -> Programmer Code All times are: Pacific Time (US & Canada) (change)
Goto page 1, 2
Page 1 of 2

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum
Categories:
 Windows Forums
 Game Forums
 Linux Forums
  Mac Forums
 PDA Forums
 Mobile Forums
  Top  |  Store  |  RSS Feeds RSS  |  Data Feeds  |  Advertise  |  Submit  |  Bookmark  |  Newsletter  |  Contact