licenses.list.txt 558 B

12345678910111213
  1. ====================Apache-2.0 WITH LLVM-exception====================
  2. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  3. // See https://llvm.org/LICENSE.txt for license information.
  4. ====================Apache-2.0 WITH LLVM-exception====================
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. ====================COPYRIGHT====================
  7. static bool isChar6(char C) { return isAlnum(C) || C == '.' || C == '_'; }
  8. static unsigned EncodeChar6(char C) {
  9. if (C >= 'a' && C <= 'z') return C-'a';