mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
Userland: Use Core::ArgsParser for 'modload'
This commit is contained in:
parent
3cc5ed642e
commit
f6369a66b1
Notes:
sideshowbarker
2024-07-19 04:11:45 +09:00
Author: https://github.com/linusg
Commit: f6369a66b1
Pull-request: https://github.com/SerenityOS/serenity/pull/3019
1 changed files with 6 additions and 5 deletions
|
@ -24,17 +24,18 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/ArgsParser.h>
|
||||
#include <serenity.h>
|
||||
#include <string.h>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (argc != 2) {
|
||||
printf("usage: %s <module.o>\n", argv[0]);
|
||||
return 0;
|
||||
}
|
||||
const char* path = nullptr;
|
||||
|
||||
Core::ArgsParser args_parser;
|
||||
args_parser.add_positional_argument(path, "Path to the module to load", "path");
|
||||
args_parser.parse(argc, argv);
|
||||
|
||||
const char* path = argv[1];
|
||||
int rc = module_load(path, strlen(path));
|
||||
if (rc < 0) {
|
||||
perror("module_load");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue