mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-27 16:16:21 +00:00
Added /charset command
This commit is contained in:
@@ -945,6 +945,18 @@ static struct cmd_t command_defs[] =
|
|||||||
CMD_NOEXAMPLES
|
CMD_NOEXAMPLES
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ "/charset",
|
||||||
|
cmd_charset, parse_args, 0, 0, NULL,
|
||||||
|
CMD_TAGS(
|
||||||
|
CMD_TAG_UI)
|
||||||
|
CMD_SYN(
|
||||||
|
"/beep")
|
||||||
|
CMD_DESC(
|
||||||
|
"Display information about the current character set supported by the terminal. ")
|
||||||
|
CMD_NOARGS
|
||||||
|
CMD_NOEXAMPLES
|
||||||
|
},
|
||||||
|
|
||||||
{ "/beep",
|
{ "/beep",
|
||||||
cmd_beep, parse_args, 1, 1, &cons_beep_setting,
|
cmd_beep, parse_args, 1, 1, &cons_beep_setting,
|
||||||
CMD_TAGS(
|
CMD_TAGS(
|
||||||
|
|||||||
@@ -43,6 +43,7 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <langinfo.h>
|
||||||
|
|
||||||
#include "chat_session.h"
|
#include "chat_session.h"
|
||||||
#include "command/commands.h"
|
#include "command/commands.h"
|
||||||
@@ -4007,6 +4008,26 @@ cmd_privileges(ProfWin *window, const char *const command, gchar **args)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
cmd_charset(ProfWin *window, const char *const command, gchar **args)
|
||||||
|
{
|
||||||
|
char *codeset = nl_langinfo(CODESET);
|
||||||
|
char *lang = getenv("LANG");
|
||||||
|
|
||||||
|
cons_show("Charset information:");
|
||||||
|
|
||||||
|
if (lang) {
|
||||||
|
cons_show(" LANG: %s", lang);
|
||||||
|
}
|
||||||
|
if (codeset) {
|
||||||
|
cons_show(" CODESET: %s", codeset);
|
||||||
|
}
|
||||||
|
cons_show(" MB_CUR_MAX: %d", MB_CUR_MAX);
|
||||||
|
cons_show(" MB_LEN_MAX: %d", MB_LEN_MAX);
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
cmd_beep(ProfWin *window, const char *const command, gchar **args)
|
cmd_beep(ProfWin *window, const char *const command, gchar **args)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -151,6 +151,7 @@ gboolean cmd_inpblock(ProfWin *window, const char *const command, gchar **args);
|
|||||||
gboolean cmd_encwarn(ProfWin *window, const char *const command, gchar **args);
|
gboolean cmd_encwarn(ProfWin *window, const char *const command, gchar **args);
|
||||||
gboolean cmd_script(ProfWin *window, const char *const command, gchar **args);
|
gboolean cmd_script(ProfWin *window, const char *const command, gchar **args);
|
||||||
gboolean cmd_export(ProfWin *window, const char *const command, gchar **args);
|
gboolean cmd_export(ProfWin *window, const char *const command, gchar **args);
|
||||||
|
gboolean cmd_charset(ProfWin *window, const char *const command, gchar **args);
|
||||||
|
|
||||||
gboolean cmd_form_field(ProfWin *window, char *tag, gchar **args);
|
gboolean cmd_form_field(ProfWin *window, char *tag, gchar **args);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user