Skip to content
Snippets Groups Projects
Select Git revision
  • 9e0fd22079bf46c111009018ca0d5cc9937dc532
  • master default protected
  • fix-words-ann
  • wccl-rules-migration
  • develop
5 results

ANTLRParserResult.h

Blame
  • licensify.sh 131 B
    #!/bin/bash
    find -name '*.h' -or -name '*.cpp' | while read file; do
    	cat LICENSE.in $file > $file.new && mv $file.new $file
    done