busybox/console-tools/chvt.c

26 lines
576 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-10-26 05:02:44 +05:30
/*
* Mini chvt implementation for busybox
1999-10-26 05:02:44 +05:30
*
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
1999-10-26 05:02:44 +05:30
*/
#include "libbb.h"
int chvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int chvt_main(int argc, char **argv)
1999-10-26 05:02:44 +05:30
{
int num;
1999-10-26 05:02:44 +05:30
if (argc != 2) {
2003-03-19 14:43:01 +05:30
bb_show_usage();
}
2007-08-23 16:22:52 +05:30
num = xatou_range(argv[1], 1, 63);
2007-10-30 01:22:21 +05:30
/* double cast suppresses "cast to ptr from int of different size" */
console_make_active(get_console_fd(), num);
return EXIT_SUCCESS;
1999-10-26 05:02:44 +05:30
}