Since 4/25/2012 10:04:40 PM, tor_rustad has written 3 articles and participated in 503 conversations. tor_rustad signature: tor_rustad
tor_rustad's articles:
Items(3) /1
OT: GNU libc linking problem on Linux1334 (6/15/2008 12:45:54 AM) comp.lang.c Sorry for going off-topic... I have some code which depend on an *old* 3rd party static library. Now, people complain that "my" code don't build anymore, because that static library spawn out error messages ... Tor
Macro redefinition2327 (8/31/2007 4:04:09 PM) comp.lang.c I'm implementing a parser, where there is a lot of different data elements defined. Now instead of hand-coding X defines, and the massive number of lines needed for table initialization, I decided to generate... Tor
Howto pass va_list to another va func425 (4/25/2007 7:41:37 PM) comp.lang.c I have a C program, where I control the error behavior according to context: /* some error handlers */ static void on_error_log (MYSQL *mysql, const char *msg, ...); .... static void on_error_exit (MYSQL ... Tor
Unable to resolve the symbols in shared library1130 (6/16/2008 12:20:34 PM) comp.lang.c Hi , Am facing one problem while deploying the shared library in different boxes. I devoloped one shared library for TAM suite ( This is a IBM product for different authentication mechanisms) to customise that... sunil.vvn(25)
how to organize my main file ?2921 (6/17/2008 3:56:26 PM) comp.lang.c By main file, I mean the one which contains the main routine. Can some one please provide suggestions as to how I can improve the organization of main file ? I have just though about a rough skeleton. In my ra... Broli00(348)
Why no generic function pointers?3221 (6/21/2008 12:54:25 AM) comp.lang.c Why doesn't the C standard include generic function pointers? I use function pointers a lot and the lack of generic ones is not so cool. There is a common compiler extension (supported by GCC and lccwin32 for... copx(116)
Pedants177112 (6/21/2008 10:11:31 AM) comp.lang.c Dear pedantic user What is a pedant? According to dictionary.com you are: 1. a person who makes an excessive or inappropriate display of learning. 2. a person who overemphasizes rules or minor details. 3. a ... jacob4111(1334)
calloc vs malloc2032 (6/8/2009 8:10:54 AM) comp.lang.c Hi, I'm curious to know if there are any major differences between using calloc and malloc. I understand that calloc initializes the variables that it has allocated memory for (although I remember coming acro... lancer6238682(96)
Legality of void main in C2929 (6/9/2009 2:32:49 AM) comp.lang.c Is void main legal in C....I know according to the standards it is illegal in C++.... But after reading the standards..... The C Standard currently says that an implementation is free to define any additional... prasoonthegreat(66)
C SQL DB Library1756 (6/10/2009 12:07:29 PM) comp.lang.c I need c db library that works with most of RDBMS. Open source. Free)) Thanks. ... zedniq(13)
rtf file verification2137 (6/11/2009 8:51:43 PM) comp.lang.c Hello I am writing a program to verify if it is an rtf file or not. Now, an rtf file starts with {\rtf. My code is as follows: int main(int argc, char **argv){ char str[5], c; FILE *fstream //code for con... Cross
C run time error in Tandem.522 (1/4/2013 5:33:45 AM) comp.lang.c I get a run time error in the below sprintf when I try executing the c program in Tandem. This code is successfully compiled and tested in windows. I'm trying to convert an array of unsigned char to a char str... jk__c(2)