Tagged Questions
1
vote
3answers
188 views
How come XDrawString doesn't take “const char *”?
looking at the declaration for XDrawString from X11, it is
int XDrawString(Display *display, Drawable d, GC gc,
int x, int y, char *string, int length);
How come the 6th argument is ...