Posts: 673
Threads: 169
Joined: Apr 2008
Reputation:
0
What thing like strtok, sscanf, Ect does reason?
Like /kick [id] [reason]
Which one does that
Posts: 2,200
Threads: 14
Joined: Apr 2009
Reputation:
0
strtok and sscanf split a string into sub strings. They split it at a space ( ' ' ) character. Sscanf is faster and offers more functionality, like spliting a string by a different delimiter, spliting a string into smaller string/integers/floats with one function call, etc ...