ustrtok_r man page on DragonFly

Man page or keyword search:  
man Server   44335 pages
apropos Keyword Search (all sections)
Output format
DragonFly logo
[printable version]

ustrtok_r(3)			Allegro manual			  ustrtok_r(3)

NAME
       ustrtok_r  - Reentrant function to retrieve tokens from a string. Alle‐
       gro game programming library.

SYNOPSIS
       #include <allegro.h>

       char *ustrtok_r(char *s, const char *set, char **last);

DESCRIPTION
       Reentrant version of ustrtok. The `last'	 parameter  is	used  to  keep
       track  of  where the parsing is up to and must be a pointer to a char *
       variable allocated by the user that remains the same while parsing  the
       same string. Example:

	  char *word, *last;
	  char string[]="some-words with dashes";
	  char *temp = ustrdup(string);
	  word = ustrtok_r(string, " -", &last);
	  while (word) {
	     allegro_message("Found `%s'\n", word);
	     word = ustrtok_r(NULL, " -", &last);
	  }
	  free(temp);

RETURN VALUE
       Returns	a  pointer to the token, or NULL if no more are found. You can
       free the memory pointed to by `last' once NULL is returned.

SEE ALSO
       ustrtok(3)

Allegro				 version 4.4.2			  ustrtok_r(3)
[top]

List of man pages available for DragonFly

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net