Subversion Repositories SvarDOS

Rev

Show changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
2018 1 d 15 h bernd.boeckmann /svarlang.lib/trunk/ svarlang: make makefile compatible with Linux / Mac  
2017 2 d 9 h bernd.boeckmann /svarlang.lib/trunk/asm/ svarlang.asm: implement svarlang_strid  
2016 2 d 10 h bernd.boeckmann /svarlang.lib/trunk/ tlumacz: make numbers decimal for deflang.inc

This fixes assembly errors if numbers start with a letter.
 
2015 2 d 12 h bernd.boeckmann /svarlang.lib/trunk/ tlumacz: deallocate on error, close fd  
2014 2 d 13 h bernd.boeckmann /svarlang.lib/trunk/ add assembly output option to TLUMACZ  
2009 6 d 8 h mateusz.viste /svarlang.lib/ bumped version string  
2007 6 d 8 h mateusz.viste /svarlang.lib/trunk/ slightly reformatted Bernd's contribution  
2006 6 d 9 h bernd.boeckmann /svarlang.lib/trunk/ fix last commit (worked by accident)  
2005 6 d 9 h bernd.boeckmann /svarlang.lib/trunk/ svarlang.lib: harden svarlang_strid against underflow / overflow

fixes https://github.com/SvarDOS/bugz/issues/119
 
1783 207 d 11 h mateusz.viste /svarlang.lib/trunk/ bumped copyr date + set the new version string  
1782 208 d 2 h mateusz.viste /svarlang.lib/trunk/ replaced FREAD() by a pragma aux  
1781 208 d 2 h mateusz.viste /svarlang.lib/trunk/ replaced FSEEK() by a pragma aux + fixed FOPEN  
1780 208 d 3 h mateusz.viste /svarlang.lib/trunk/ replaced FCLOSE() by a pragma aux  
1779 208 d 3 h mateusz.viste /svarlang.lib/trunk/ replaced FOPEN() by a pragma aux  
1381 419 d 4 h mateusz.viste /svarlang.lib/trunk/ improved wording of the -DWITHSTDIO comment  
1380 419 d 4 h mateusz.viste /svarlang.lib/trunk/ remove useless libc headers  
1379 419 d 4 h mateusz.viste /svarlang.lib/trunk/ replaced -ox optimization with -os -s (optimize for size + disable stack overflow checks)  
1378 419 d 4 h mateusz.viste /svarlang.lib/trunk/ operate on a long variable instead of an array of chars (faster and smaller code size)  
1377 419 d 5 h mateusz.viste /svarlang.lib/trunk/ removed unnecessary register push/pop pairs around asm-only functions  
1376 419 d 5 h mateusz.viste /svarlang.lib/trunk/ remove multiple FCLOSE() calls by a single place where code jumps for cleanup (saves 6 bytes of footprint)  
1375 419 d 6 h mateusz.viste /svarlang.lib/trunk/ merged two conditions into one check - saves 11 bytes of footprint  
1374 419 d 6 h mateusz.viste /svarlang.lib/trunk/ shortened lang-reading loop for better readability  
1373 419 d 6 h mateusz.viste /svarlang.lib/trunk/ reading header and string count in one fread call, saves 36 bytes of footprint  
1372 419 d 14 h mateusz.viste /svarlang.lib/trunk/ added a "release" target to build distribuable archives  
1371 419 d 14 h mateusz.viste /svarlang.lib/trunk/ improved doc  
1370 419 d 15 h mateusz.viste /svarlang.lib/trunk/ updated version strings  
1367 420 d 1 h mateusz.viste /svarlang.lib/trunk/ doc update  
1306 432 d 2 h mateusz.viste /svarlang.lib/trunk/ replaced svarlang_autoload_nlspath() by a more generic svarlang_autoload_pathlist()  
1301 433 d 2 h mateusz.viste /svarlang.lib/trunk/ removed dependency on string.h by removing strcpy() and strcat()  
1300 433 d 2 h mateusz.viste /svarlang.lib/trunk/ code formatting  
1299 433 d 3 h mateusz.viste /svarlang.lib/trunk/ removed useless string.h  
1298 433 d 3 h mateusz.viste /svarlang.lib/trunk/ removed useless stdlib.h + code formatting fixes  
1297 433 d 3 h mateusz.viste /svarlang.lib/trunk/ added a note about byte endianness  
1296 433 d 3 h mateusz.viste /svarlang.lib/trunk/ replaced typdef-obfuscated structs by their explicit naming  
1295 433 d 3 h mateusz.viste /svarlang.lib/trunk/ code style reformatting  
1294 433 d 4 h mateusz.viste /svarlang.lib/trunk/ updated file format spec + crediting Bernd for his very cool improvement  
1293 433 d 4 h mateusz.viste /svarlang.lib/trunk/ changed file format signature to SvL\x1a to bring it to 4 bytes, allowing for faster check and avoiding a memcmp() call  
1291 434 d 16 h bernd.boeckmann /svarlang.lib/trunk/ trlumacz: fix ref-lang copy bug introduced in r1290  
1290 436 d 6 h bernd.boeckmann /svarlang.lib/trunk/ svarlang file format refinement

use sorted dictionary to speed up searches
breaking change!
 
1281 439 d 3 h mateusz.viste /svarlang.lib/trunk/ file access relies on fopen() when svarlang is compiled with -DWITHSTDIO