summaryrefslogtreecommitdiff
path: root/quote.h
Commit message (Collapse)AuthorAgeFilesLines
* Add copyright headers to the *.c/*.h files in the main directoryH. Peter Anvin2009-06-281-0/+33
| | | | | | | | | | Add copyright headers to the *.c/*.h files in the main directory. For files where I'm sure enough that we have all the approvals, I have given them the 2-BSD license, the others have been given the "LGPL for now" license header. Most of them can probably be changed after auditing. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Fix memory management issues with expanded %includeH. Peter Anvin2008-06-041-1/+1
| | | | | | | | Ownership of the filename string was a bit fuzzy, with the result that we were freeing it even though it was retained for use by __FILE__. Clean up a number of other memory management issues with the new quoting code, and change the stdscan implementation to one pass over the string.
* qstring: first cut at full quoted string support in the preprocessorH. Peter Anvin2008-06-011-0/+11
First attempt at properly handle quoted strings in the preprocessor. This also adds range support in %substr. No support in the assembler yet.