c++ - Symbol Undefined _snprintf
- cane <cane_member pathlink.com> Nov 10 2005
- Bertel Brander <bertel post4.tele.dk> Nov 10 2005
- cane <x x.com> Nov 11 2005
I've got a line of code like this in a file: snprintf(buffer, sizeof(buffer), "%sfd", argv[1]); When I try to compile&link this file with DMC it keeps telling me: Error 42: Symbol Undefined _snprintf should I link some specific library in addition? Thanks, bye.
Nov 10 2005
cane wrote:I've got a line of code like this in a file: snprintf(buffer, sizeof(buffer), "%sfd", argv[1]); When I try to compile&link this file with DMC it keeps telling me: Error 42: Symbol Undefined _snprintf
snprintf is a C99 function, DMC is not (as far as i can tell) C99 complient. DMC has however a function called _snprintf (notice the _) which seems to do the same. -- Absolutely not the best homepage on the net: http://home20.inet.tele.dk/midgaard But it's mine - Bertel
Nov 10 2005
Bertel Brander wrote:snprintf is a C99 function, DMC is not (as far as i can tell) C99 complient.
Ouch! I didnt' know...DMC has however a function called _snprintf (notice the _) which seems to do the same.
Thanks, calling _snprintf() seems to solve the problem. Bye.
Nov 11 2005








cane <x x.com>