Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. FlorianB

    i want to develop a String Replace Algorithm

    Hello pratham123, Maybe something like this can help you: char *ReplaceString(char** pszSource,... if(*pszSource == NULL || ... pszResult = realloc(*pszSource,... DO NOT FORGET, as said Salem, to allocate pszSource dynamically ... and to eventually free it later! By, FlorianB
  2. FlorianB

    call to Connect

    Hello logic4fun, Have a look to sigaction(2) manual page of your system. The SA_RESTART flag is maybe by default on ... in this case, the system calls are re-started after an interrupt. Hope this help! By, FlorianB

Part and Inventory Search

Back
Top