1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-13 14:57:42 +00:00

Add long string syntax to dst.

This commit is contained in:
Calvin Rose
2018-05-06 13:28:09 -04:00
parent 181a38f412
commit b31791200b
7 changed files with 289 additions and 242 deletions

View File

@@ -15,3 +15,62 @@ build
# End of https://www.gitignore.io/api/cmake
# Created by https://www.gitignore.io/api/c
### C ###
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
# End of https://www.gitignore.io/api/c

View File

@@ -20,6 +20,10 @@
* IN THE SOFTWARE.
*/
#ifdef ONEFILE
#include "sqlite3.c"
#endif
#include "sqlite3.h"
#include <dst/dst.h>