Hello,
We are using standard string functions like strcpy, memcpy, strcat in our embedded projects, We came to know there are more safer functions available called strcpy_s, memcpy_s, strcat_s etc. that can be supported by C11 standards, I have done my compiler's setting accordingly, even though I am unable to use the safe string operation functions strcpy_s and others.
May I know, which header files or library files I need to include for using these safe functions in my project?
Which of the header file will have the function defination of these safe functions?





