7
votes
10answers
1k views
Is it possible to subclass a C struct in C++ and use pointers to the struct in C code?
Is there a side effect in doing this:
C code:
struct foo {
int k;
};
int ret_foo(const struct foo* f){
return f.k;
}
C++ code:
…
4
votes
5answers
921 views
The simplest way of printing a portion of a char[] in C
Let's say I have a char* str = "0123456789" and I want to cut the first and the last three letters and print just the middle, what is the simplest, and safest, way of doing it?
Now the tric …
1
vote
6answers
291 views
How to stop a read operation on a socket?
From one thread I got the following code:
int next_stuff(char **code){
...
len=read(file_desc,buffer+end_len,packet_size-end_len);
if(len<=0)
{
if( …
1
vote
2answers
36 views
Instruct GDB 6.5 to use source embedded in object file
Hi All!
I've been trying to make GNU gdb 6.5-14 to use the source code embedded on the object file when debugging, instead of scanning some directories for it.
The main …
