Click here to Skip to main content
15,879,095 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What is the equivalent for strtok_s in QT??
Posted
Updated 15-Apr-11 3:29am
v2

QT is an application framework. strtok_s is a C runtime function. More specifically, strtok_s is Microsoft's secure version of the same standard C non-secure function, strtok. If you're using QT on Windows, just keep using strtok_s because it should be available. If your code is going to be running on Linux, use strtok, and add the pragma that hides/ignores the warning you get during a Visual Studio compile.
 
Share this answer
 
v2
Comments
Gokulnath007 15-Apr-11 8:07am    
Great my 5
strtok is the standard C library function that can be used instead of Microsoft-specific strtok_s
 
Share this answer
 
I think you are looking for QString::split() [^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900