Browse Source

Add AGPL v3.0 headers

master
heck 5 years ago
parent
commit
a4a2194137
  1. 2
      gen/gen_cid/__init__.py
  2. 3
      gen/gen_cid/ast_2_cid.py
  3. 3
      gen/gen_cid/c_2_ast.py
  4. 3
      gen/gen_cid/cid_2_yml.py
  5. 2
      gen/gen_cid/gen_yml.py
  6. 4
      gen/gen_cid/utils.py

2
gen/gen_cid/__init__.py

@ -1,4 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
from . import c_2_ast from . import c_2_ast
from . import ast_2_cid from . import ast_2_cid

3
gen/gen_cid/ast_2_cid.py

@ -1,5 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import os # This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
from . import utils from . import utils

3
gen/gen_cid/c_2_ast.py

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
import clang.cindex import clang.cindex
from clang.cindex import CursorKind from clang.cindex import CursorKind

3
gen/gen_cid/cid_2_yml.py

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
from . import utils from . import utils

2
gen/gen_cid/gen_yml.py

@ -1,5 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
import sys import sys
import json import json

4
gen/gen_cid/utils.py

@ -1,5 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# # This file is under GNU Affero General Public License 3.0
# see LICENSE.txt
import os import os
import json import json

Loading…
Cancel
Save