blob: 3e3242963631396722f91f18c513b5a3bf5b1a3d (
plain)
ofs | hex dump | ascii |
---|
0000 | 25 50 44 46 2d 31 2e 35 0d 0a 25 b5 b5 b5 b5 0d 0a 31 20 30 20 6f 62 6a 0d 0a 3c 3c 2f 54 79 70 | %PDF-1.5..%......1.0.obj..<</Typ |
0020 | 65 2f 43 61 74 61 6c 6f 67 2f 50 61 67 65 73 20 32 20 30 20 52 2f 4c 61 6e 67 28 7a 68 2d 43 4e | e/Catalog/Pages.2.0.R/Lang(zh-CN |
0040 | 29 20 2f 53 74 72 75 63 74 54 72 65 65 #ifndef __LICENSE_H
#define __LICENSE_H
static inline int license_is_gpl_compatible(const char *license)
{
return (strcmp(license, "GPL") == 0
|| strcmp(license, "GPL v2") == 0
|| strcmp(license, "GPL and additional rights") == 0
|| strcmp(license, "Dual BSD/GPL") == 0
|| strcmp(license, "Dual MIT/GPL") == 0
|| strcmp(license, "Dual MPL/GPL") == 0);
}
#endif
|