Help
Advanced Member level 2
Hi,
void PC_LINK_O_Write_String_To_Buffer(const char* const STR_PTR)
{
int i=0;
while(STR_PTR != '\0')
{
PC_LINK_O_Write_Char_To_Buffer(STR_PTR);
i++;
}
}
Anyone can help me to explain the type of function call? and
what the meaning for '\0'?
Thank You..
void PC_LINK_O_Write_String_To_Buffer(const char* const STR_PTR)
{
int i=0;
while(STR_PTR != '\0')
{
PC_LINK_O_Write_Char_To_Buffer(STR_PTR);
i++;
}
}
Anyone can help me to explain the type of function call? and
what the meaning for '\0'?
Thank You..