c++ - Symbol Undefined _snprintf
- cane (6/6) Nov 10 2005 I've got a line of code like this in a file:
- Bertel Brander (9/16) Nov 10 2005 snprintf is a C99 function, DMC is not (as far as i can tell)
- cane (4/8) Nov 11 2005 Thanks, calling _snprintf() seems to solve the problem.
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 _snprintfsnprintf 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