Is there any inbuilt function in C similar to TRT ( test and translation function) in

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Asm man
    New Member
    • Jun 2014
    • 1

    Is there any inbuilt function in C similar to TRT ( test and translation function) in

    I am looking for inbuilt function in C which corresponds to TRT instruction in Assembler. Plz help...
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Maybe strtok.

    It is part of string.h. Basically, strtok scam a string looking for the presence of any delimiters. The characters between the delimiters are called tokens.

    Other than that, you may have to write your own function.

    Comment

    Working...