├── .gitignore ├── bitwise.cpp ├── blob_funcs.cpp ├── dllmain.cpp ├── fastfuncs.def ├── fastfuncs.sln ├── fastfuncs.vcproj ├── fastfuncs100 ├── append.srf ├── bitwise_and.srf ├── bitwise_or.srf ├── blob_alloc.srf ├── blob_extract.srf ├── blob_import.srf ├── blob_mid.srf ├── fast_pos.srf ├── get_byte_array.srf ├── index.srf ├── last_pos.srf ├── next_tag.srf ├── replace_all.srf ├── sort.srf ├── split.srf ├── stack_trace.srf └── token.srf ├── fastfuncs105 ├── append.srf ├── bitwise_and.srf ├── bitwise_or.srf ├── blob_alloc.srf ├── blob_extract.srf ├── blob_import.srf ├── blob_mid.srf ├── fast_pos.srf ├── index.srf ├── last_pos.srf ├── next_tag.srf ├── replace_all.srf ├── sort.srf ├── split.srf ├── stack_trace.srf └── token.srf ├── fastfuncs110 ├── append.srf ├── bitwise_and.srf ├── bitwise_or.srf ├── blob_alloc.srf ├── blob_extract.srf ├── blob_import.srf ├── blob_mid.srf ├── fast_pos.srf ├── index.srf ├── last_pos.srf ├── next_tag.srf ├── replace_all.srf ├── sort.srf ├── split.srf ├── stack_trace.srf └── token.srf ├── fastfuncs115 ├── append.srf ├── bitwise_and.srf ├── bitwise_or.srf ├── blob_alloc.srf ├── blob_extract.srf ├── blob_import.srf ├── blob_mid.srf ├── fast_pos.srf ├── index.srf ├── last_pos.srf ├── next_tag.srf ├── replace_all.srf ├── sort.srf ├── split.srf ├── stack_trace.srf └── token.srf ├── fastfuncs120 ├── append.srf ├── bitwise_and.srf ├── bitwise_or.srf ├── blob_alloc.srf ├── blob_extract.srf ├── blob_import.srf ├── blob_mid.srf ├── fast_pos.srf ├── index.srf ├── last_pos.srf ├── next_tag.srf ├── replace_all.srf ├── sort.srf ├── split.srf ├── stack_trace.srf └── token.srf ├── fastfuncs125 ├── append.srf ├── bitwise_and.srf ├── bitwise_or.srf ├── blob_alloc.srf ├── blob_extract.srf ├── blob_import.srf ├── blob_mid.srf ├── fast_pos.srf ├── index.srf ├── last_pos.srf ├── next_tag.srf ├── replace_all.srf ├── sort.srf ├── split.srf ├── stack_trace.srf └── token.srf ├── libs ├── build_libs.bat ├── pbshr100.def ├── pbshr105.def ├── pbshr110.def ├── pbshr115.def ├── pbshr120.def ├── pbshr125.def ├── pbvm100.def ├── pbvm105.def ├── pbvm110.def ├── pbvm115.def ├── pbvm120.def └── pbvm125.def ├── orca.cpp ├── pbvm.h ├── readme.txt └── stack_trace.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/.gitignore -------------------------------------------------------------------------------- /bitwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/bitwise.cpp -------------------------------------------------------------------------------- /blob_funcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/blob_funcs.cpp -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /fastfuncs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs.def -------------------------------------------------------------------------------- /fastfuncs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs.sln -------------------------------------------------------------------------------- /fastfuncs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs.vcproj -------------------------------------------------------------------------------- /fastfuncs100/append.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/append.srf -------------------------------------------------------------------------------- /fastfuncs100/bitwise_and.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/bitwise_and.srf -------------------------------------------------------------------------------- /fastfuncs100/bitwise_or.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/bitwise_or.srf -------------------------------------------------------------------------------- /fastfuncs100/blob_alloc.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/blob_alloc.srf -------------------------------------------------------------------------------- /fastfuncs100/blob_extract.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/blob_extract.srf -------------------------------------------------------------------------------- /fastfuncs100/blob_import.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/blob_import.srf -------------------------------------------------------------------------------- /fastfuncs100/blob_mid.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/blob_mid.srf -------------------------------------------------------------------------------- /fastfuncs100/fast_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/fast_pos.srf -------------------------------------------------------------------------------- /fastfuncs100/get_byte_array.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/get_byte_array.srf -------------------------------------------------------------------------------- /fastfuncs100/index.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/index.srf -------------------------------------------------------------------------------- /fastfuncs100/last_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/last_pos.srf -------------------------------------------------------------------------------- /fastfuncs100/next_tag.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/next_tag.srf -------------------------------------------------------------------------------- /fastfuncs100/replace_all.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/replace_all.srf -------------------------------------------------------------------------------- /fastfuncs100/sort.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/sort.srf -------------------------------------------------------------------------------- /fastfuncs100/split.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/split.srf -------------------------------------------------------------------------------- /fastfuncs100/stack_trace.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/stack_trace.srf -------------------------------------------------------------------------------- /fastfuncs100/token.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs100/token.srf -------------------------------------------------------------------------------- /fastfuncs105/append.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/append.srf -------------------------------------------------------------------------------- /fastfuncs105/bitwise_and.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/bitwise_and.srf -------------------------------------------------------------------------------- /fastfuncs105/bitwise_or.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/bitwise_or.srf -------------------------------------------------------------------------------- /fastfuncs105/blob_alloc.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/blob_alloc.srf -------------------------------------------------------------------------------- /fastfuncs105/blob_extract.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/blob_extract.srf -------------------------------------------------------------------------------- /fastfuncs105/blob_import.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/blob_import.srf -------------------------------------------------------------------------------- /fastfuncs105/blob_mid.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/blob_mid.srf -------------------------------------------------------------------------------- /fastfuncs105/fast_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/fast_pos.srf -------------------------------------------------------------------------------- /fastfuncs105/index.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/index.srf -------------------------------------------------------------------------------- /fastfuncs105/last_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/last_pos.srf -------------------------------------------------------------------------------- /fastfuncs105/next_tag.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/next_tag.srf -------------------------------------------------------------------------------- /fastfuncs105/replace_all.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/replace_all.srf -------------------------------------------------------------------------------- /fastfuncs105/sort.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/sort.srf -------------------------------------------------------------------------------- /fastfuncs105/split.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/split.srf -------------------------------------------------------------------------------- /fastfuncs105/stack_trace.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/stack_trace.srf -------------------------------------------------------------------------------- /fastfuncs105/token.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs105/token.srf -------------------------------------------------------------------------------- /fastfuncs110/append.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/append.srf -------------------------------------------------------------------------------- /fastfuncs110/bitwise_and.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/bitwise_and.srf -------------------------------------------------------------------------------- /fastfuncs110/bitwise_or.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/bitwise_or.srf -------------------------------------------------------------------------------- /fastfuncs110/blob_alloc.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/blob_alloc.srf -------------------------------------------------------------------------------- /fastfuncs110/blob_extract.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/blob_extract.srf -------------------------------------------------------------------------------- /fastfuncs110/blob_import.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/blob_import.srf -------------------------------------------------------------------------------- /fastfuncs110/blob_mid.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/blob_mid.srf -------------------------------------------------------------------------------- /fastfuncs110/fast_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/fast_pos.srf -------------------------------------------------------------------------------- /fastfuncs110/index.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/index.srf -------------------------------------------------------------------------------- /fastfuncs110/last_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/last_pos.srf -------------------------------------------------------------------------------- /fastfuncs110/next_tag.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/next_tag.srf -------------------------------------------------------------------------------- /fastfuncs110/replace_all.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/replace_all.srf -------------------------------------------------------------------------------- /fastfuncs110/sort.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/sort.srf -------------------------------------------------------------------------------- /fastfuncs110/split.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/split.srf -------------------------------------------------------------------------------- /fastfuncs110/stack_trace.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/stack_trace.srf -------------------------------------------------------------------------------- /fastfuncs110/token.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs110/token.srf -------------------------------------------------------------------------------- /fastfuncs115/append.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/append.srf -------------------------------------------------------------------------------- /fastfuncs115/bitwise_and.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/bitwise_and.srf -------------------------------------------------------------------------------- /fastfuncs115/bitwise_or.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/bitwise_or.srf -------------------------------------------------------------------------------- /fastfuncs115/blob_alloc.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/blob_alloc.srf -------------------------------------------------------------------------------- /fastfuncs115/blob_extract.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/blob_extract.srf -------------------------------------------------------------------------------- /fastfuncs115/blob_import.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/blob_import.srf -------------------------------------------------------------------------------- /fastfuncs115/blob_mid.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/blob_mid.srf -------------------------------------------------------------------------------- /fastfuncs115/fast_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/fast_pos.srf -------------------------------------------------------------------------------- /fastfuncs115/index.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/index.srf -------------------------------------------------------------------------------- /fastfuncs115/last_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/last_pos.srf -------------------------------------------------------------------------------- /fastfuncs115/next_tag.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/next_tag.srf -------------------------------------------------------------------------------- /fastfuncs115/replace_all.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/replace_all.srf -------------------------------------------------------------------------------- /fastfuncs115/sort.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/sort.srf -------------------------------------------------------------------------------- /fastfuncs115/split.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/split.srf -------------------------------------------------------------------------------- /fastfuncs115/stack_trace.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/stack_trace.srf -------------------------------------------------------------------------------- /fastfuncs115/token.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs115/token.srf -------------------------------------------------------------------------------- /fastfuncs120/append.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/append.srf -------------------------------------------------------------------------------- /fastfuncs120/bitwise_and.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/bitwise_and.srf -------------------------------------------------------------------------------- /fastfuncs120/bitwise_or.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/bitwise_or.srf -------------------------------------------------------------------------------- /fastfuncs120/blob_alloc.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/blob_alloc.srf -------------------------------------------------------------------------------- /fastfuncs120/blob_extract.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/blob_extract.srf -------------------------------------------------------------------------------- /fastfuncs120/blob_import.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/blob_import.srf -------------------------------------------------------------------------------- /fastfuncs120/blob_mid.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/blob_mid.srf -------------------------------------------------------------------------------- /fastfuncs120/fast_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/fast_pos.srf -------------------------------------------------------------------------------- /fastfuncs120/index.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/index.srf -------------------------------------------------------------------------------- /fastfuncs120/last_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/last_pos.srf -------------------------------------------------------------------------------- /fastfuncs120/next_tag.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/next_tag.srf -------------------------------------------------------------------------------- /fastfuncs120/replace_all.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/replace_all.srf -------------------------------------------------------------------------------- /fastfuncs120/sort.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/sort.srf -------------------------------------------------------------------------------- /fastfuncs120/split.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/split.srf -------------------------------------------------------------------------------- /fastfuncs120/stack_trace.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/stack_trace.srf -------------------------------------------------------------------------------- /fastfuncs120/token.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs120/token.srf -------------------------------------------------------------------------------- /fastfuncs125/append.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/append.srf -------------------------------------------------------------------------------- /fastfuncs125/bitwise_and.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/bitwise_and.srf -------------------------------------------------------------------------------- /fastfuncs125/bitwise_or.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/bitwise_or.srf -------------------------------------------------------------------------------- /fastfuncs125/blob_alloc.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/blob_alloc.srf -------------------------------------------------------------------------------- /fastfuncs125/blob_extract.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/blob_extract.srf -------------------------------------------------------------------------------- /fastfuncs125/blob_import.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/blob_import.srf -------------------------------------------------------------------------------- /fastfuncs125/blob_mid.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/blob_mid.srf -------------------------------------------------------------------------------- /fastfuncs125/fast_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/fast_pos.srf -------------------------------------------------------------------------------- /fastfuncs125/index.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/index.srf -------------------------------------------------------------------------------- /fastfuncs125/last_pos.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/last_pos.srf -------------------------------------------------------------------------------- /fastfuncs125/next_tag.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/next_tag.srf -------------------------------------------------------------------------------- /fastfuncs125/replace_all.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/replace_all.srf -------------------------------------------------------------------------------- /fastfuncs125/sort.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/sort.srf -------------------------------------------------------------------------------- /fastfuncs125/split.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/split.srf -------------------------------------------------------------------------------- /fastfuncs125/stack_trace.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/stack_trace.srf -------------------------------------------------------------------------------- /fastfuncs125/token.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/fastfuncs125/token.srf -------------------------------------------------------------------------------- /libs/build_libs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/build_libs.bat -------------------------------------------------------------------------------- /libs/pbshr100.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbshr100.def -------------------------------------------------------------------------------- /libs/pbshr105.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbshr105.def -------------------------------------------------------------------------------- /libs/pbshr110.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbshr110.def -------------------------------------------------------------------------------- /libs/pbshr115.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbshr115.def -------------------------------------------------------------------------------- /libs/pbshr120.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbshr120.def -------------------------------------------------------------------------------- /libs/pbshr125.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbshr125.def -------------------------------------------------------------------------------- /libs/pbvm100.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbvm100.def -------------------------------------------------------------------------------- /libs/pbvm105.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbvm105.def -------------------------------------------------------------------------------- /libs/pbvm110.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbvm110.def -------------------------------------------------------------------------------- /libs/pbvm115.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbvm115.def -------------------------------------------------------------------------------- /libs/pbvm120.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbvm120.def -------------------------------------------------------------------------------- /libs/pbvm125.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/libs/pbvm125.def -------------------------------------------------------------------------------- /orca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/orca.cpp -------------------------------------------------------------------------------- /pbvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/pbvm.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/readme.txt -------------------------------------------------------------------------------- /stack_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeman/fastfuncs/HEAD/stack_trace.cpp --------------------------------------------------------------------------------