Tagged Questions

5
votes
5answers
1k views

Are strtol, strtod unsafe?

It seems that strtol() and strtod() effectively allow (and force) you to cast away constness in a string: #include <stdlib.h> #include <stdio.h> int main() { const char *foo = "Hello, ...
3
votes
7answers
409 views

How do I properly turn a const char* returned from a function into a const char** in C?

In short, I would like to do this: const char **stringPtr = &getString(); However, I understand that you can't & on rvalues. So I'm stuck with this: const char *string = getString(); const ...
1
vote
3answers
180 views

How can I join a char to a constant char*?

I have a function that joins two constant char* and returns the result. What I want to do though is join a char to a constant char* eg char *command = "nest"; char *halloween = join("hallowee", ...
1
vote
1answer
265 views

Python to C/C++ const char question

I am extending Python with some C++ code. One of the functions I'm using has the following signature: int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict, ...
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 ...