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

Diff for /src/usr.bin/lex/ecs.c between version 1.7 and 1.8

version 1.7, 2015/11/19 19:43:40 version 1.8, 2015/11/19 23:34:56
Line 102 
Line 102 
 /* mkeccl - update equivalence classes based on character class xtions  /* mkeccl - update equivalence classes based on character class xtions
  *   *
  * synopsis   * synopsis
  *    Char ccls[];   *    u_char ccls[];
  *    int lenccl, fwd[llsiz], bck[llsiz], llsiz, NUL_mapping;   *    int lenccl, fwd[llsiz], bck[llsiz], llsiz, NUL_mapping;
  *    void mkeccl( Char ccls[], int lenccl, int fwd[llsiz], int bck[llsiz],   *    void mkeccl( u_char ccls[], int lenccl, int fwd[llsiz], int bck[llsiz],
  *                      int llsiz, int NUL_mapping );   *                      int llsiz, int NUL_mapping );
  *   *
  * ccls contains the elements of the character class, lenccl is the   * ccls contains the elements of the character class, lenccl is the
Line 115 
Line 115 
  */   */
   
 void    mkeccl (ccls, lenccl, fwd, bck, llsiz, NUL_mapping)  void    mkeccl (ccls, lenccl, fwd, bck, llsiz, NUL_mapping)
      Char    ccls[];       u_char    ccls[];
      int     lenccl, fwd[], bck[], llsiz, NUL_mapping;       int     lenccl, fwd[], bck[], llsiz, NUL_mapping;
 {  {
         int     cclp, oldec, newec;          int     cclp, oldec, newec;

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8