Hi:

How does this piece of code work ?

#include <string.h>

char * strcat(s, append)
         register char *s;
         register const char *append;
{
        char *save = s;

        for (; *s; ++s);
        while (*s++ = *append++);
        return(save);
}

What role does 'register' keyword play here ?

thanks
Saifi.





=====================================================
      To know more about TWINCLING Society
            http://www.twincling.org/

      OpenSSL - PKI & Digital Certificates

      Mark your calendar for the TSM
      Saturday 5pm on 15th July 2006

===================================================== 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/twincling/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to