📄 ifuncs.h
字号:
/* Inline functions for rsync. * * Copyright (C) 2007-2008 Wayne Davison * * 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 * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, visit the http://fsf.org website. */static inline voidalloc_xbuf(xbuf *xb, size_t sz){ if (!(xb->buf = new_array(char, sz))) out_of_memory("alloc_xbuf"); xb->size = sz; xb->len = xb->pos = 0;}static inline voidrealloc_xbuf(xbuf *xb, size_t sz){ char *bf = realloc_array(xb->buf, char, sz); if (!bf) out_of_memory("realloc_xbuf"); xb->buf = bf; xb->size = sz;}static inline intto_wire_mode(mode_t mode){#ifdef SUPPORT_LINKS#if _S_IFLNK != 0120000 if (S_ISLNK(mode)) return (mode & ~(_S_IFMT)) | 0120000;#endif#endif return mode;}static inline mode_tfrom_wire_mode(int mode){#if _S_IFLNK != 0120000 if ((mode & (_S_IFMT)) == 0120000) return (mode & ~(_S_IFMT)) | _S_IFLNK;#endif return mode;}static inline char *d_name(struct dirent *di){#ifdef HAVE_BROKEN_READDIR return (di->d_name - 2);#else return di->d_name;#endif}static inline intisDigit(const char *ptr){ return isdigit(*(unsigned char *)ptr);}static inline intisPrint(const char *ptr){ return isprint(*(unsigned char *)ptr);}static inline intisSpace(const char *ptr){ return isspace(*(unsigned char *)ptr);}static inline intisLower(const char *ptr){ return islower(*(unsigned char *)ptr);}static inline intisUpper(const char *ptr){ return isupper(*(unsigned char *)ptr);}static inline inttoLower(const char *ptr){ return tolower(*(unsigned char *)ptr);}static inline inttoUpper(const char *ptr){ return toupper(*(unsigned char *)ptr);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -