??? 09/28/04 10:10 Read: times |
#78243 - RE: Keil strncpy function doubt????? Responding to: ???'s previous message |
Hmmmm....
Are you sure that strncpy() is what you actually want? strncpy() will copy a string from source to destination; the copy terminates when a null character is found or n characters have been copied. See: http://www.keil.com/support/m...trncpy.htm Although the above link is not crystal clear. Perhaps you actualy want memcpy(). See: http://www.keil.com/support/m...memcpy.htm |