1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 00:17:46 +00:00

Userland: Use Core::ArgsParser for 'modload'

This commit is contained in:
Linus Groh 2020-08-05 21:00:18 +02:00 committed by Andreas Kling
parent 3cc5ed642e
commit f6369a66b1

View file

@ -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");