Entries from 2013-01-05 to 1 day

Tokenize c, c++ and objective-c files with clang

// tokenizer.cc // Copyright (c) 2013 Shinya // The MIT License (MIT) http://opensource.org/licenses/mit-license.php #include <iostream> #include <clang-c/Index.h> void DisplayTokens(const CXTranslationUnit& tu) { CXCursor cursor = clang_getTranslationUnitCursor(tu)</clang-c/index.h></iostream>…

Find tabs with grep

$ grep -r $'\t' * References 逆引きUNIXコマンド/grepでタブを検索する方法 - Linuxと過ごす (Japanese)