Search Results

0
votes

C Memory Management

(I'm writing because I feel the answers so far aren't quite on the mark.) The reason you have to memory management worth mentioning is when you have a problem / solution that requires you t …
2
votes

What is your favourite non-standard C library function ?

Actually, I think strdup is actually not in the C standard... the man page claims CONFORMING TO strdup() conforms to SVr4, 4.3BSD, POSIX.1-2001. strndup(), …
3
votes

Learn C from Open Source code

I'd recommend getting a good, recommended textbook. Really, a lot of code you'll see looking at open source projects will be crap (ok, it tends to work, which is where the bar is set, …
10
votes

How do you reverse a string in place in C or C++?

Evil C: #include <stdio.h> void strrev(char *p) { char *q = p; while(q && *q) ++q; for(--q; p < q; ++p, --q) *p = *p ^ *q, *q = *p ^ *q, *p = *p …
1
vote

x86 Assembly Keyboard Input

I've a piece of GeekOS that seems to do In_Byte(KB_CMD); and then In_Byte(KB_DATA); to fetch a scancode. I put it up: …
0
votes

How can I read an XML file into a buffer in C?

Suggestion: Use memory mapping This has the potential to cut down on useless copying of the data. The trick is to ask the OS for what you want, instead of doing it. Here's an implementati …
6
votes

How to write an application for the system tray in Linux

python-eggtrayicon here's the example that comes with the debian package python-eggtrayicon in debian/testing... #!/usr/bin/python import pygtk pygtk.require( …