Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
include /
xorg /
[ HOME SHELL ]
Name
Size
Permission
Action
isdv4.h
6.14
KB
-rw-r--r--
wacom-properties.h
4.29
KB
-rw-r--r--
wacom-util.h
1.73
KB
-rw-r--r--
Xwacom.h
2.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wacom-util.h
/* * Copyright 2011 by Jason Gerecke, Wacom. <jason.gerecke@wacom.com> * * 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 2 * 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef WACOM_UTIL_H_ #define WACOM_UTIL_H_ /** * Get the number of elements in an array */ #ifndef ARRAY_SIZE #define ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0])) #endif /* to access kernel defined bits */ #define BIT(x) (1UL<<((x) & (BITS_PER_LONG - 1))) #define BITS_PER_LONG (sizeof(long) * 8) #define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1) #define ISBITSET(x,y) ((x)[LONG(y)] & BIT(y)) #define SETBIT(x,y) ((x)[LONG(y)] |= BIT(y)) #define CLEARBIT(x,y) ((x)[LONG(y)] &= ~BIT(y)) #define OFF(x) ((x)%BITS_PER_LONG) #define LONG(x) ((x)/BITS_PER_LONG) /** * Test if the mask is set in the given bitfield. * @return TRUE if set or FALSE otherwise. */ #define MaskIsSet(bitfield, mask) !!(((bitfield) & (mask)) == (mask)) /** * Set the given mask for the given bitfield. */ #define MaskSet(bitfield, mask) ((bitfield) |= (mask)) /** * Clear the given mask from the given bitfield */ #define MaskClear(bitfield, mask) ((bitfield) &= ~(mask)) #endif /* WACOM_UTIL_H_ */
Close