active questions tagged c - Stack Overflowmost recent 30 from stackoverflow.com2009-11-25T01:54:19Zhttp://stackoverflow.com/feeds/tag/chttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1793867/best-way-to-check-if-a-character-array-is-empty1Best way to check if a character array is emptyunknown (google)2009-11-25T00:12:00Z2009-11-25T01:25:28Z
<p>Which is the most reliable way to check if a character array is empty?</p>
<pre><code>char text[50];
if(strlen(text) == 0) {}
</code></pre>
<p>or</p>
<pre><code>if(text[0] == '\0') {}
</code></pre>
<p>or do i need to do </p>
<pre><code> memset(text, 0, sizeof(text));
if(strlen(text) == 0) {}
</code></pre>
<p>Whats the most efficient way to go about this?</p>
http://stackoverflow.com/questions/1793616/why-doesnt-getchar-recognise-return-as-eof-in-windows-console2Why doesn't getchar() recognise return as EOF in windows console?Gary Willoughby2009-11-24T23:15:39Z2009-11-25T01:03:31Z
<p>I have a small snippet of code below that i'm running using <a href="http://www.smorgasbordet.com/pellesc/" rel="nofollow">PellesC</a>.</p>
<p>When the code is executed and i've typed a few characters into the console, i press enter. </p>
<p>Can you explain to me why the <code>printf("%ld\n", nc);</code> line doesn't seem to get executed? As no output is written to the console.</p>
<pre><code>#include <stdio.h>
int main(void)
{
long nc = 0;
while(getchar() != EOF)
{
++nc;
}
printf("%ld\n", nc);
}
</code></pre>
<p>I've decided to learn C thoroughly using the K&R book and i'm embarrased to say this rather elementary example has me stumped.</p>
http://stackoverflow.com/questions/1793971/why-does-gcc-give-me-a-syntax-error-when-trying-to-return-a-struct-pointer3Why does GCC give me a syntax error when trying to return a struct pointer?jamesk892009-11-25T00:44:38Z2009-11-25T00:50:56Z
<p>I'm using CodeLite on Ubuntu and for some bizzare reason GCC keeps throwing this error whenever I try to compile code with a function that returns a pointer to a struct:</p>
<pre><code>error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
</code></pre>
<p>Here is an example I wrote up to demonstrate this error:</p>
<pre><code>#include <stdio.h>
typedef struct test_t {
unsigned char someVar;
};
test_t* testFunc() { // GCC throws that error on this line
return NULL;
}
int main(int argc, char **argv)
{
return 0;
}
</code></pre>
<p>So unless I'm forgetting something obvious I would normally expect this code to compile on any other compiler, namely MSVC, so I'm completely confused as to why it doesn't work.</p>
<p>Hopefully one of you experts can please enlighten me.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1772078/disabling-nul-termination-of-strings-in-gcc0Disabling NUL-termination of strings in GCCtimn2009-11-20T17:32:40Z2009-11-25T00:45:59Z
<p>Is it possible to globally disable NUL-terminated strings in GCC?</p>
<p>I am using my own string library, and I have absolutely no need for the final NUL characters as it already stores the proper length internally in a struct.</p>
<p>However, if I wanted to append 10 strings, this would mean that 10 bytes are unnecessarily allocated on the stack. With wide strings it is even worse: As for x86, there are 40 bytes wasted; and for x86_64, 80 bytes!</p>
<p>I defined a macro to add those stack-allocated strings to my struct:</p>
<pre><code>#define AppendString(ppDest, pSource) \
AppendSubString(ppDest, (*ppDest)->len + 1, pSource, 0, sizeof(pSource) - 1)
</code></pre>
<p>Using <code>sizeof(...) - 1</code> works quite well but I am wondering whether I could get rid of NUL termination in order to save a few bytes?</p>
http://stackoverflow.com/questions/1790204/in-c-is-i1-atomic9In C is "i+=1;" atomic?Crazy Chenz2009-11-24T13:53:54Z2009-11-25T00:37:19Z
<p>In C, is <code>i+=1;</code> atomic?</p>
http://stackoverflow.com/questions/1789705/how-does-make-know-which-files-to-update2How does make know which files to updatePhenom2009-11-24T12:15:01Z2009-11-25T00:33:54Z
<p>I noticed that when I make changes to some files and then I type make, it will run certain commands related to those files. If I don't change anything, then make doesn't do anything, saying that the program is up to date. This tells me that make has a way of knowing which files were changed since it was last run. How does it know? It doesn't seem to put anything in the directory where it is run, so it must be storing this information somewhere else.</p>
http://stackoverflow.com/questions/145096/is-it-true-that-there-is-no-need-to-learn-c-because-c-contains-everything19Is it true that there is no need to learn C because C++ contains everything?pomeranian2008-09-28T03:08:02Z2009-11-24T23:29:41Z
<p>I am taking a class in C++ programming and the professor told us that there is no need to learn C because C++ contains everything in C plus object-oriented features. However, some others have told me that this is not necessarily true. Can anyone shed some light on this?</p>
http://stackoverflow.com/questions/1545423/libpcap-no-wireless-devices-detected0libpcap : No Wireless Devices detectedSiddhant2009-10-09T18:40:11Z2009-11-24T22:47:25Z
<p>Hi. I want to capture packets going out of my machine, and I'm using libpcap (version 1.0.0-1) for the same. The problem is, that a basic program like this - </p>
<pre><code>#include <stdio.h>
#include <pcap.h>
int main(int argc, char *argv[]) {
char *dev, errbuf[PCAP_ERRBUF_SIZE];
dev = pcap_lookupdev(errbuf);
if (dev == NULL) {
fprintf(stderr, "%s\n", errbuf);
return (2);
}
printf("Device : %s\n", dev);
return (0);
}
</code></pre>
<p>does not seem to display the wireless interface. Everytime I compile and run the program, it detects eth0. How can I make it capture the wireless interfaces as well?</p>
http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across51What is the worst real-world macros/pre-processor abuse you've ever come across?Trevor Boyd Smith2009-03-17T01:57:42Z2009-11-24T22:44:17Z
<p>What is the <em>worst</em> <strong>real-world</strong> macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?</p>
<p>Please add a short snippet or story if it is really entertaining. The goal is to teach something instead of always telling people "never use macros".</p>
<p><hr /></p>
<p>p.s.: I've used macros before... but usually I get rid of them eventually when I have a "real" solution (even if the real solution is inlined so it becomes similar to a macro).</p>
<p><hr /></p>
<p><strong>Bonus:</strong> Give an example where the macro was really was better than a not-macro solution.</p>
<p><strong>Related question:</strong> <a href="http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial">When are C++ macros beneficial?</a> </p>
http://stackoverflow.com/questions/1791601/what-does-explorer-use-to-open-a-file0What does explorer use to open a file?dauphic2009-11-24T17:21:18Z2009-11-24T22:35:44Z
<p>I'm attempting to hook into whatever explorer calls when a file is opened (double-click, context menu open, etc.), however I can't figure out which function that is.</p>
<p>Originally, I thought it was ShellExecute, as that does the same thing as far as I can tell, but after hooking into it I learned that it's only used when a new explorer window is opened.</p>
<p>Any ideas which function I should be hooking?</p>
http://stackoverflow.com/questions/1668434/how-much-memory-does-a-constant-take-in-c8How much memory does a constant take in C?tsubasa2009-11-03T16:23:34Z2009-11-24T22:24:11Z
<p>when doing like this:</p>
<pre><code>const int a = 5;
</code></pre>
<p>I wonder if a will get 4-byte of memory just like a variable ? (in 32 bit system)</p>
http://stackoverflow.com/questions/14165/strange-c-errors-with-code-that-has-min-max-calls4Strange C++ errors with code that has min()/max() calls.Ashwin2008-08-18T04:13:34Z2009-11-24T22:17:01Z
<p>I'm seeing strange errors when my C++ code has min() or max() calls. I'm using Visual C++ compilers.</p>
http://stackoverflow.com/questions/1722260/what-creates-the-stack0What creates the stack?piemesons2009-11-12T13:42:49Z2009-11-24T22:07:12Z
<p>Suppose in a program we have implemented a stack. But who creates the stack ? Is it the processor, or operating system, or compiler?</p>
http://stackoverflow.com/questions/1789408/can-doubles-be-used-to-represent-a-64-bit-number-without-loss-of-precision2Can doubles be used to represent a 64 bit number without loss of precisionKop2009-11-24T11:16:17Z2009-11-24T21:57:37Z
<p>I want to use lua (that internally uses only doubles) to represent a integer that can't have rounding errors between 0 and 2^64-1 or terrible things will happen.</p>
<p>Is it possible to do so? </p>
http://stackoverflow.com/questions/1772679/anybody-tried-to-compile-go-on-windows-its-seems-start-supporting-to-generate0Anybody tried to compile "Go" on Windows?, Its seems start supporting to generate PE Format now.S.Mark2009-11-20T19:19:25Z2009-11-24T21:29:22Z
<p><a href="http://code.google.com/r/hectorchu-go-windows/source/list" rel="nofollow">http://code.google.com/r/hectorchu-go-windows/source/list</a></p>
<p>If you could compile it successfully, I like to know the procedures of how to.</p>
http://stackoverflow.com/questions/1790208/how-to-use-strtol-to-read-from-an-int64-value1How to use strtol to read from an __int64 value ?Arabcoder2009-11-24T13:54:30Z2009-11-24T21:23:24Z
<p>Do exist on msvc and mingw a 64 bits equivalent function to do it ?</p>
<p>Aparently K&R was thinking that 2^32 was enough</p>
http://stackoverflow.com/questions/1792520/slightly-weird-imo-c-code4slightly weird (imo) C++ codeyetapb2009-11-24T19:54:50Z2009-11-24T20:37:40Z
<p>Sorry if this is simple, my C++ is rusty.</p>
<p>What is this doing? There is no assignment or function call as far as I can see. This code pattern is repeated many times in some code I inherited. If it matters it's embedded code.</p>
<pre><code>*(volatile UINT16 *)&someVar->something;
</code></pre>
<p>edit: continuing from there, does the following additional code confirm Heaths suspicions? (exactly from code, including the repetition, except the names have been changed to protect the innocent)</p>
<pre><code>if (!WaitForNotBusy(50))
return ERROR_CODE_X;
*(volatile UINT16 *)& someVar->something;
if (!WaitForNotBusy(50))
return ERROR_CODE_X;
*(volatile UINT16 *)& someVar->something;
x = SomeData;
</code></pre>
http://stackoverflow.com/questions/1788696/how-the-code-behaves-different-for-java-and-c-compiler5how the code behaves different for java and C compiler ?vipin k.2009-11-24T08:35:41Z2009-11-24T19:32:51Z
<p>I have this Code, i ran this on Java and C ,but they give me two different Results
What is that makes them to run differently.</p>
<pre><code>x=10;y=10;z=10;
y-=x--;
z-=--x;
x-=--x-x--;
</code></pre>
<p>The Output in <strong>java</strong> for value of X is : <strong>8</strong> <BR>
and for <strong>C</strong> it is <strong>6</strong>
How these Two compiler Behaves differently for incremented options.?.</p>
http://stackoverflow.com/questions/1791616/implementing-dhcp-client0Implementing DHCP clientlex2009-11-24T17:24:24Z2009-11-24T18:28:29Z
<p>On unix using C, my client is listening on port 68 with superuser mode. After sending DHCP discover message, when I try to receive, it blocks in recvfrom means there is no message received or is it like system has a process (DHCP client) listening on same port 68 which receives the message and thats my process are not able to receive the message. What is the problem?</p>
<p>I have set the socket option SO_REUSEADDR and SO_BROADCAST. I am sending to port 67.</p>
<pre><code>struct dhcpmessage
{
uint8_t op;
uint8_t htype;
uint8_t hlen;
uint8_t hops;
uint32_t xid;
uint16_t secs;
uint16_t flags;
uint32_t ciaddr;
uint32_t yiaddr;
uint32_t siaddr;
uint32_t giaddr;
char chaddr[16];
char sname[64];
char file[128];
char magic[4];
char opt[3];
} __attribute__((__packed__));
#include<stdio.h>
#include<ctype.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<signal.h>
#include<sys/wait.h>
#include<sys/types.h>
#include<sys/socket.h>
#include<netinet/in.h>
#include<arpa/inet.h>
#include<errno.h>
#include<sys/file.h>
#include<sys/msg.h>
#include<sys/ipc.h>
#include<time.h>
#include"defs.h"
int main() {
int sockfd,listenfd,connfd;
const int on=1;
struct sockaddr_in servaddr,cliaddr,rservaddr;
if((sockfd=socket(AF_INET,SOCK_DGRAM,0)) < 0)
die("socket");
if(setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,&on,sizeof(on)) < 0)
die("setsockopt");
if(setsockopt(sockfd,SOL_SOCKET,SO_BROADCAST,&on,sizeof(on)) < 0)
die("setsockopt");
bzero(&servaddr,sizeof(servaddr));
bzero(&cliaddr,sizeof(cliaddr));
cliaddr.sin_port = htons(68);
cliaddr.sin_family = AF_INET;
cliaddr.sin_addr.s_addr = htonl(INADDR_ANY);
if(bind(sockfd,(struct sockaddr*)&cliaddr,sizeof(cliaddr)) < 0)
die("bind");
servaddr.sin_port = htons(67);
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = inet_addr("255.255.255.255");
struct dhcpmessage dhcpmsg;
bzero(&dhcpmsg,sizeof(dhcpmsg));
dhcpmsg.op = 1;
dhcpmsg.htype = 1;
dhcpmsg.hlen = 6;
dhcpmsg.hops = 0;
dhcpmsg.xid = htonl(1000);
dhcpmsg.secs = htons(0);
dhcpmsg.flags = htons(0x8000);
dhcpmsg.chaddr[0] = 0x00;
dhcpmsg.chaddr[1] = 0x1A;
dhcpmsg.chaddr[2] = 0x80;
dhcpmsg.chaddr[3] = 0x80;
dhcpmsg.chaddr[4] = 0x2C;
dhcpmsg.chaddr[5] = 0xC3;
dhcpmsg.magic[0]=99;
dhcpmsg.magic[1]=130;
dhcpmsg.magic[2]=83;
dhcpmsg.magic[3]=99;
dhcpmsg.opt[0]=53;
dhcpmsg.opt[1]=1;
dhcpmsg.opt[2]=1;
if(sendto(sockfd,&dhcpmsg,sizeof(dhcpmsg),0,(struct sockaddr*)&servaddr,sizeof(servaddr)) < 0)
die("sendto");
struct dhcpmessage recvdhcpmsg;
socklen_t rservlen = sizeof(rservaddr);
if(recvfrom(sockfd,&recvdhcpmsg,sizeof(recvdhcpmsg),0,(struct sockaddr*)&rservaddr,&rservlen) < 0)
die("recvfrom");
char *str = (char*)&recvdhcpmsg;
int i;
for(i=0;i<sizeof(recvdhcpmsg);i++)
printf("%d_",str[i]);
printf("\n");
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1791427/is-this-possible-to-call-c-c-application-from-db2-stored-procedure-trigger1Is this possible to call c/c++ application from DB2 stored procedure/trigger?y2kx2009-11-24T16:59:07Z2009-11-24T18:16:29Z
<p>Is this possible to call c/c++ application from DB2 stored procedure/trigger? If yes, what would be general steps doing it? Any pointers to web resources on the subject?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1791130/dhcp-client-doesnt-receive-response-on-port-680DHCP client doesnt receive response on port 68Ryan2009-11-24T16:17:43Z2009-11-24T17:06:59Z
<p>I have used wireshark to see the DHCP packet structure. Now I have created a DHCPDISCOVER request and stored it in 'message'. I then broadcast it on the network.</p>
<pre><code> sockfd = socket(AF_INET, SOCK_DGRAM, 0);
if (sockfd < 0) {
perror("socket");
exit(1);
}
setsockopt(sockfd,SOL_SOCKET,SO_BROADCAST, &on,sizeof(on));
setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR, &on,sizeof(on));
bzero(&cliaddr, sizeof(cliaddr));
cliaddr.sin_family = AF_INET;
cliaddr.sin_addr.s_addr = htonl(INADDR_ANY);
cliaddr.sin_port = htons(68);
if (bind(sockfd, (struct sockaddr *) &cliaddr, sizeof(cliaddr)) < 0) {
perror("bind");
exit(1);
}
bzero(&addr, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = inet_addr("255.255.255.255");
addr.sin_port = htons(67);
cnt = sendto(sockfd, message, sizeof(message), 0,(struct sockaddr *) &addr, sizeof(addr));
if (cnt < 0) {
perror("sendto");
exit(1);
}
addrlen = sizeof(servaddr);
cnt = recvfrom(sockfd, reply, sizeof(reply), 0,(struct sockaddr *) &servaddr, &addrlen);
if (cnt < 0) {
perror("recvfrom");
exit(1);
}
printf("\nReply Received\n");
</code></pre>
<p>I run this program and analyze the packets sent and received using wireshark. I see that a DHCPDISCOVER packet is sent on port 67 and a DHCPOffer packet is received on port 68 in the wireshark window. My client sends the packet fine but does not receive this packet and it blocks on recvfrom call. What is going wrong?</p>
http://stackoverflow.com/questions/1764980/safe-dll-injection0'Safe' DLL Injectiondauphic2009-11-19T17:14:06Z2009-11-24T16:33:10Z
<p>Not a terribly good question, sorry.</p>
<p>I have a program that needs to be alerted when a file is opened from explorer (i.e. ShellExecute(A/W) is called).</p>
<p>Unfortunately, Microsoft removed the COM interface (IShellExecuteHook) that allows you to hook these events in Vista and up, supposedly because older code could cause a crash due to changes. There was a work-around to re-enable this feature, but it no longer works.</p>
<p>I've done some research and it looks like the only way to catch calls to ShellExecute is to re-route the call to shell32.dll. At the moment, I'm looking at injecting my own DLL into the explorer process, then copying the IAT entry for ShellExecute to some address allocation in my DLL, and finally modifying the IAT entry for ShellExecute to point to my function, which will notify the program that a file was opened and jump to the original ShellExecute function, whose address we stored earlier.</p>
<p>My biggest concern here is antiviruses. Will they care that I'm injecting into explorer? Will they care that I'm modifying the IAT? </p>
<p>Another concern is whether this is safe; is it possible (or rather likely) for explorer's security priveleges to not allow injection via CreateRemoteThread? If so, is there a better way to do this injection?</p>
<p>Is there a better way to do this in general?</p>
<p><strong>EDIT: For anyone who comes across this in the future, explorer.exe has no IAT for shell32.dll; it has a header, but the thunk is full of junk values, so there's no way (as far as I can tell) to retrieve the entry for any imported functions.
<br/>Looks like code tunneling is the only way to hook this.</strong></p>
http://stackoverflow.com/questions/1787892/overflow-over-scanf8s-string2Overflow over scanf("%8s", string)?Figo2009-11-24T04:58:48Z2009-11-24T16:32:16Z
<p>Hi, I know it's possible to overflow ordinary code:</p>
<p><strong>char string[9];</strong></p>
<p>scanf("%s", string). </p>
<p>But is it possible to overflow scanf("%8s", string)? 8 is just an example.</p>
<p>I know "%8s" works like a delimit, but I also notice when I input string longer than 8 chars, the program will terminate due to:</p>
<p><strong>* stack smashing detected *</strong>: ./a.out terminated</p>
<p>======= Backtrace: =========</p>
<p>...</p>
<p>Obviously there's a flag that detects stack smashing turned on by GCC by default. Since this is a stack smashing, then my guess is that it is still possible to overflow and execute arbitrary code.</p>
<p>Contrary to normal overflow that mangles the caller of scanf("%s"), if scanf("%8s") can overflow, it will overflow within scanf function so that when scanf try to return, control is gained.</p>
<p>But scanf is a syscall that requires mode-switch (switching from user mode into kernel mode), and internally it will call stuff like read to the stdin etc. So not sure if we can overflow in kernel mode or something..</p>
<p>Comments are welcome!!</p>
<p><strong><em>UPDATE >></em></strong> </p>
<p>char string[9] is assumed in the above example. char string[8] in following real code.</p>
<p>The question is really about the seeming conflicting story between safe scanf("%8s") and GCC abortion due to stack smashing.</p>
<p>Simplified code:</p>
<pre><code>void foo(pass some pointer) {
char input[8];
int input_number = 0;
while (1) { // looping console
printf some info;
scanf("%8s", input);
input_number = atoi(input);
if ((strlen(input) == 1) && (strncmp(input, "q", 1) == 0)) {
input_number = -1;
}
switch (input_number) {
case -1: to quit the console if input = 'q';
default: to print info that pointer refers to;
...
}
}
}
</code></pre>
<p>Note: </p>
<ol>
<li>foo is called by someone else.</li>
<li>Though string is 8 bytes in real
code with "%8s", I don't think this
lead to smashing.</li>
</ol>
http://stackoverflow.com/questions/1787996/c-library-function-to-do-sort0C library function to do sortAnkur2009-11-24T05:29:20Z2009-11-24T16:23:47Z
<p>Is there any library function available in C standard library to do sort? </p>
http://stackoverflow.com/questions/1790980/popup-window-appearing-while-stopping-the-c-process0Popup window appearing while stopping the C process Amrish2009-11-24T15:55:03Z2009-11-24T16:03:32Z
<p>I am calling a C process from my Java program, and ending that C process using exit (0).</p>
<p>On Windows machine, under certain conditions it is opening a pop-up window telling me that
"Test.exe has encountered a problem and needs to close. We are sorry for the inconvenience."</p>
<p>Does anyone have a guess why this problem is coming around? I want a clean shutdown without any window being opened.</p>
<p>I have used below alternatives also to close, with the same result:</p>
<pre><code>exit(EXIT_SUCESS);
</code></pre>
<p>and</p>
<pre><code>return 0;
</code></pre>
http://stackoverflow.com/questions/1790293/how-to-detect-if-a-bluetooth-hid-device-was-disconnected0How to detect if a Bluetooth HID device was disconnected?Thomas2009-11-24T14:07:07Z2009-11-24T15:57:05Z
<p>I'm using <code>CreateFile</code> to open an asynchronous file handle to a Bluetooth HID device on the system. The device will then start streaming data, and I use <code>ReadFile</code> to read data from the device. The problem is, that if the Bluetooth connection is dropped, <code>ReadFile</code> just keeps giving <code>ERROR_IO_PENDING</code> instead of reporting a failure.</p>
<p>I cannot rely on timeouts, because the device doesn't send any data if there is nothing to report. I do not want it to time out if the connection is still alive, but there is simply no data for a while.</p>
<p>Still, the Bluetooth manager (both the Windows one and the Toshiba one) do immediately notice that the connection was lost. So this information is somewhere inside the system; it's just not getting through to <code>ReadFile</code>.</p>
<p>I have available:</p>
<ul>
<li>the file handle (<code>HANDLE</code> value) to the device,</li>
<li>the path that was used to open that handle (but I don't want to attempt to open it another time, creating a new connection...)</li>
<li>an <code>OVERLAPPED</code> struct used for asynchronous <code>ReadFile</code>.</li>
</ul>
<p>I am not sure if this issue is Bluetooth-specific, HID-specific, or occurs with devices in general. Is there any way that I can either</p>
<ul>
<li>get <code>ReadFile</code> to return an error when the connection was dropped, or</li>
<li>detect <em>quickly</em> upon a timeout from <code>ReadFile</code> whether the connection is still alive (it needs to be fast because <code>ReadFile</code> is called at least 100 times per second), or</li>
<li>solve this problem in another way I haven't thought of?</li>
</ul>
http://stackoverflow.com/questions/1786257/properly-handling-platform-specifics-unix-windows-in-c1Properly handling platform specifics (unix/windows) in C?xyld2009-11-23T21:49:12Z2009-11-24T15:49:48Z
<p>This question is intentionally very generic and I'm not much of a C programmer although I dabble here and there. The following code is intentionally vague and probably won't compile, but I hope you get the point...</p>
<p>Handling platform specifics seems dynamically in a compiled language like C seems unnecessary and even scary:</p>
<pre><code>int main(int argc, char *argv[]) {
if (windows)
dowindowsroutine();
else
dounixroutine();
return 0;
}
</code></pre>
<p>However, handling platform specifics through really very basic macros seems gross too as the function gets chopped up into small pieces which may not compile properly (read answer to <a href="http://stackoverflow.com/questions/1644868/c-define-macro-for-debug-printing">http://stackoverflow.com/questions/1644868/c-define-macro-for-debug-printing</a> for a similar problem).</p>
<pre><code>int main(int argc, char *argv[]) {
#ifdef windows
dowindowsroutine();
#else
dounixroutine();
#endif
return 0;
}
</code></pre>
<p>So what's the "right" way to do this? Is it a case-by-case basis? Is there a good way to keep these gross macros out of functions entirely? I remember reading somewhere (probably in the kernel docs or something related) that macros (more importantly, complex macro logic) is meant for header files, not .c files. How do you handle this kind of stuff?</p>
<p>I'm sick of "spaghetti code" with ifdef's inside of functions... I spose there are some cases where it may be OK, but the majority of code I see abuse it.</p>
<p>Note: I've seen some perl XS code look like it wraps function prototypes to and things, but is that the only way? Isn't that somewhat gross in the community? Or is that OK? Coming from a mostly "scripted" background of perl, python, shell,... It's hard for me to tell.</p>
<p>Update: Let me be more clear, the problem I'm trying to avoid is that I don't want choppy code. I want to be able to ensure that if my code breaks at compile time in linux, it also breaks at compile time in windows. With the choppy code, its possible to break windows from compiling, but not linux and vice versa. Is this kind of thing possible? The closest thing to this so far is ifdef'ing the entire function, but the function names are the same, is there a better solution where there is one interface, but the OS specific parts have their OS name embedded into the name?</p>
http://stackoverflow.com/questions/1790750/what-is-the-difference-between-read-and-recv-and-between-send-and-write4what is the difference between read() and recv() , and between send() and write() ?SjB2009-11-24T15:20:52Z2009-11-24T15:24:51Z
<p>what is the difference between read() and recv() , and between send() and write() in socket programming ? performance and speed .</p>
http://stackoverflow.com/questions/1790356/64-bit-versions-of-ftell-and-fseek064-bit versions of ftell and fseekArabcoder2009-11-24T14:16:30Z2009-11-24T14:24:35Z
<p>for mingw and msvc also if possible linux gcc</p>
http://stackoverflow.com/questions/1788783/is-system-programming-dead3Is system programming dead?hyperboreean2009-11-24T08:59:22Z2009-11-24T13:52:07Z
<p>I am asking here from the perspective of a C programmer using mostly Unix. Is it still worth it to do system programming in C?</p>