refactor: rename core.search to core.stringhelpers

This commit is contained in:
2026-03-11 19:41:50 +00:00
parent 6383b35945
commit 17ee64ba02
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ uses
proc.mgr,
proc.types,
core.strings,
core.search,
core.stringhelpers,
core.gfx.fileicons,
io.syslog,
debug.tracer,
+1 -1
View File
@@ -61,7 +61,7 @@ uses
driver.video.lvgl,
driver.storage.types,
core.strings,
core.search,
core.stringhelpers,
io.syslog,
debug.tracer,
core.util, arch.x86.util,
+1 -1
View File
@@ -39,7 +39,7 @@ uses
driver.storage.types,
driver.storage.filedispatch,
core.strings,
core.search,
core.stringhelpers,
io.syslog,
io.stdio,
debug.tracer,
+2 -2
View File
@@ -84,7 +84,7 @@ uses
driver.storage.mgr,
driver.storage.test,
core.strings,
core.search,
core.stringhelpers,
io.syslog,
driver.exp.testdriver,
proc.testprocs,
@@ -329,7 +329,7 @@ begin
{ Run unit tests }
boot.splash.update(65, 'Running test suite...');
core.strings.UnitTest;
core.search.UnitTest;
core.stringhelpers.UnitTest;
driver.bus.usb.types.UnitTest;
driver.bus.usb.core.UnitTest;
boot.splash.update(70, 'Running test suite...');
@@ -1,5 +1,5 @@
{
Core->Search - Reusable file-oriented search, sort, and format utilities.
Core->StringHelpers - Reusable file-oriented search, sort, and format utilities.
Provides:
- getFileExtension: zero-copy extension extraction
@@ -9,7 +9,7 @@
@author(Aaron Hance <ah@aaronhance.me>)
}
unit core.search;
unit core.stringhelpers;
interface
+1 -1
View File
@@ -14,7 +14,7 @@ interface
uses
core.strings,
core.search;
core.stringhelpers;
const
{ File-type icon PUA constants (U+E000..E078) — rendered by asuro_icons_* }
@@ -62,7 +62,7 @@ implementation
uses
driver.storage.vfs, driver.storage.types, memory.heap, core.strings,
core.search, debug.tracer, io.syslog, core.util, arch.x86.util;
core.stringhelpers, debug.tracer, io.syslog, core.util, arch.x86.util;
type
THandlerEntry = record