txt2Cstring

Command for converting text to C string notation \n for new line, hexadecimal notation for non printable characters
git clone https://noulin.net/git/txt2Cstring.git
Log | Files | Refs

.gitignore (498B)


      1 # Vim
      2 *.sw*
      3 
      4 # Debug
      5 .gdb_history
      6 
      7 # Coverage
      8 *.gcov
      9 *.gcda
     10 *.gcno
     11 
     12 # Prerequisites
     13 *.d
     14 
     15 # Object files
     16 *.o
     17 *.ko
     18 *.obj
     19 *.elf
     20 
     21 # Linker output
     22 *.ilk
     23 *.map
     24 *.exp
     25 
     26 # Precompiled Headers
     27 *.gch
     28 *.pch
     29 
     30 # Libraries
     31 *.lib
     32 *.a
     33 *.la
     34 *.lo
     35 
     36 # Shared objects (inc. Windows DLLs)
     37 *.dll
     38 *.so
     39 *.so.*
     40 *.dylib
     41 
     42 # Executables
     43 *.exe
     44 *.out
     45 *.app
     46 *.i*86
     47 *.x86_64
     48 *.hex
     49 
     50 # Debug files
     51 *.dSYM/
     52 *.su
     53 *.idb
     54 *.pdb
     55 
     56 # Kernel Module Compile Results
     57 *.mod*
     58 *.cmd
     59 .tmp_versions/
     60 modules.order
     61 Module.symvers
     62 Mkfile.old
     63 dkms.conf