I noticed some standard library functions use void* as their parameters, for example, the memcpy function, its prototype is :
void * memcpy ( void * destination, const void * source, size_t num );
There are also functions using char* as their paramters, for example, the read function of ifstream class, its prototype is:
istream& read ( char* s, streamsize n );
Why does not the standard library unify these paramteres, for example, all using char* or all using void*. Are there any particular reasons?
cheng
memcpyis most definitely not an STL function! – Oli Charlesworth Nov 12 '11 at 2:34istream. – Pubby Nov 12 '11 at 2:35charmeans "byte" (i.e. "smallest data unit"),char*is really an entirely satisfactory replacement type. Oh well. – Kerrek SB Nov 12 '11 at 2:41