files
kolibrios/programs/cmm/misc/search.c
leency 5736d204a7
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 39s
Build system / Build (pull_request) Failing after 47s
add search app to run Eolite with param
in order to decrease filesize
2025-03-21 04:46:03 +02:00

14 lines
272 B
C

#define MEMSIZE 1024*20
#define ENTRY_POINT #main
#include "../lib/fs.h"
void main()
{
char param2[4096];
strcpy(#param2, "\\s ");
strncpy(#param2 + 3, #param, sizeof(param2) - 2 - 3);
RunProgram("/sys/File managers/Eolite", #param2);
ExitProcess();
}