Search Results

4
votes
2answers
231 views

How to unescape html in C

I'm interested in unescaping text for example: '\' -> '\' in C. Anyone knows of a good library? By html escape I mean, all the …
0
votes

call different child function from same parent function

Something like this? #include <stdio.h> void foo(void) { printf("foo\n"); } void bar(void) { printf("bar\n"); } static inline void parent(void func(), const char *msg) { / …
0
votes

Create a new independent process from another C process

Are you sure you are checking correctly the return value of fork()? Like: pid_t pid; if (pid == 0) { /* child */ } else if (pid > 0) { /* parent …
0
votes

C Constants

No, weeks = 12 * 4; Is exactly the same as: weeks = MONTHS * 4; Does 12 take memory? No, Therefore neither does MONT …
0
votes

Drawing directly to the screen via GTK or GDK

GTK doesn't have such option AFAIK, you probably want to use the backend: Xlib (or Xcb) for that. …
0
votes

Extending Python with C/C++

Maybe this example helps. I think it's simple enough :) …
0
votes

How to unescape html in C

I wrote my own unescape code; very simplified, but does the job: pn_util.c …