Why does memset take an int as the second argument instead of a char, whereas wmemset takes a wchar_t instead of something like long or long long?

link|improve this question

nice try with code in the title :) doesn't seem to work though.. – Default May 7 '11 at 7:38
1  
@Default: Haha actually I know it doesn't work, but I think it makes it easier to read visually, doesn't it? – Mehrdad May 7 '11 at 7:39
Nope, not to me. And to be picky, memset could also be code :) – Default May 7 '11 at 7:40
If wmemset was symmetrical it would take a wint_t, which is the type defined to be the int to wchar_t's char. (Hint: several functions in the standard library take int arguments that are cast to characters. The (C) standard says that character literals are of type int, not char.) – Chris Lutz May 7 '11 at 7:42
@Default: Haha ok, I thought it might be more readable. :) @Chris: Wait, what?? I thought chars are characters?! – Mehrdad May 7 '11 at 7:43
show 5 more comments
feedback

4 Answers

up vote 13 down vote accepted

memset predates (by quite a bit) the addition of function prototypes to C. Without a prototype, you can't pass a char to a function -- when/if you try, it'll be promoted to int when you pass it, and what the function receives is an int.

It's also worth noting that in C, a character literal like 'a' does not have type char -- it has type int, so what you pass will usually start out as an int anyway. Essentially the only way for it to start as a char and get promoted is if you pass a char variable.

In theory, memset could probably be modified so it receives a char instead of an int, but there's unlikely to be any benefit, and a pretty decent possibility of breaking some old code or other. With an unknown but potentially fairly high cost, and almost no chance of any real benefit, I'd say the chances of it being changed to receive a char fall right on the line between "slim" and "none".

Edit (responding to the comments): The CHAR_BIT least significant bits of the int are used as the value to write to the target.

link|improve this answer
Wait, there existed a version of C without function prototypes?! =O – Mehrdad May 7 '11 at 7:56
Yes -- prototypes were added during the C89 standardization. Before that, there were only function declarations, which specified the return type, but not the number or type(s) of parameter(s). – Jerry Coffin May 7 '11 at 7:58
O__O Wow, I feel old... but that's interesting! Seems like the right explanation too, thanks! +1 – Mehrdad May 7 '11 at 8:01
feedback

Probably the same reason why the functions in <ctypes.h> take ints and not chars.

On most platforms, a char is too small to be pushed on the stack by itself, so one usually pushes the type closest to the machine's word size, i.e. int.

As the link in @Gui13's comment points out, doing that also increases performance.

link|improve this answer
1  
There's an interesting answer here: programmersheaven.com/mb/embedCpp/359784/359784/memset-function , which confirms what you're saying :) What's interesting to confirm is what's the behaviour of memset(ptr, 0xFEBADE23, 1);? Which part of the int gets written? – Gui13 May 7 '11 at 7:52
@Frederic: Great explanation, but why doesn't the same thing apply to wmemset? Isn't a wchar_t also too small to be pushed onto the stack on many platforms too (often 16 bytes)? – Mehrdad May 7 '11 at 7:59
1  
The functions in <ctype.h> take ints for the same reason that getc, fgetc, etc., return int -- to accommodate EOF, which needs to be distinct from any value of char (or signed char or unsigned char). – Jerry Coffin May 7 '11 at 8:02
@Mehrdad, that depends. wchar_t is 32 bits wide on Linux systems :) – Frédéric Hamidi May 7 '11 at 8:05
@Frederic: But it's 16 bits on Windows systems... :P (I think you meant bits not bytes) – Mehrdad May 7 '11 at 8:06
show 4 more comments
feedback

Actually, it can take a char argument (which gets cast implicitly by the compiler into an int). Have a look at this:

http://www.cplusplus.com/reference/clibrary/cstring/memset/

(This is actually C++ but it also works with C)

The same applies for wmemset.

link|improve this answer
The declaration says int value though... – Mehrdad May 7 '11 at 7:42
@Mehrdad Did you have a look at the code at the bottom of the page? – Alexandros May 7 '11 at 7:48
2  
Yeah, it just shows that we passed in a character literal. Doesn't say why it's declared as int, though. – Mehrdad May 7 '11 at 7:49
@Mehrdad Maybe it was a mistake made by the people who standardized the C standard library. I can't come up with a better explanation. – Alexandros May 7 '11 at 7:57
feedback

See fred's answer, it's for performance reasons.

On my side, I tried this code:

#include <stdio.h>
#include <string.h>

int main (int argc, const char * argv[])
{
    char c = 0x00;

    printf("Before: c = 0x%02x\n", c);
    memset( &c, 0xABCDEF54, 1);
    printf("After:  c = 0x%02x\n", c);

    return 0;
}

And it gives me this on a 64bits Mac:

Before: c = 0x00
After:  c = 0x54

So as you see, only the last byte gets written. I guess this is dependent on the architecture (endianness).

link|improve this answer
1  
The value written is independent of the endianness of the architecture. The value written is the value passed in converted to an unsigned char which means modulo 2^CHAR_BIT arithmetic. This means the least significant CHAR_BIT bits whatever the endianness of the machine. – Charles Bailey May 7 '11 at 8:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.