Diff for /embedaddon/rsync/itypes.h between versions 1.1 and 1.1.1.3

version 1.1, 2013/10/14 07:51:14 version 1.1.1.3, 2021/03/17 00:32:36
Line 1 Line 1
 /* Inline functions for rsync.  /* Inline functions for rsync.
  *   *
 * Copyright (C) 2007-2013 Wayne Davison * Copyright (C) 2007-2020 Wayne Davison
  *   *
  * This program is free software; you can redistribute it and/or modify   * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by   * it under the terms of the GNU General Public License as published by
Line 20  static inline int Line 20  static inline int
 isDigit(const char *ptr)  isDigit(const char *ptr)
 {  {
         return isdigit(*(unsigned char *)ptr);          return isdigit(*(unsigned char *)ptr);
   }
   
   static inline int
   isHexDigit(const char *ptr)
   {
           return isxdigit(*(unsigned char *)ptr);
 }  }
   
 static inline int  static inline int

Removed from v.1.1  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>