[BACK]Return to buf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rcs

Diff for /src/usr.bin/rcs/buf.c between version 1.21 and 1.22

version 1.21, 2011/04/20 19:34:16 version 1.22, 2011/07/06 15:36:52
Line 188 
Line 188 
 }  }
   
 /*  /*
    * Append a string <s> to the end of buffer <b>.
    */
   void
   buf_puts(BUF *b, const char *str)
   {
           buf_append(b, str, strlen(str));
   }
   
   /*
  * Return u_char at buffer position <pos>.   * Return u_char at buffer position <pos>.
  */   */
 u_char  u_char

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22