strxfrm: returns the length of the transformed string : strxfrm « string.h « C / ANSI-C






strxfrm: returns the length of the transformed string


    
//Declaration:  size_t strxfrm(char *str1, const char *str2, size_t  count); 
//Return:       returns the length of the transformed string. 


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

  int main(void)
  {
    char *s1 = "asdfasdfasdf";

    char *s2 = "asdfasdfasdf";
   
    strxfrm(s1, s2, 10);
  }


           
       








Related examples in the same category