https://github.com/torvalds/linux
Raw File
Tip revision: 7dcca30a32aadb0520417521b0c44f42d09fe05c authored by Linus Torvalds on 08 July 2007, 23:32:17 UTC
Linux 2.6.22
Tip revision: 7dcca30
license.h
#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
back to top