FreeCalypso > hg > fc-pcsc-tools
diff simtool/lndwrite.c @ 83:07e395fddfe1
lnd-write command implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 17 Feb 2021 06:08:28 +0000 |
parents | simtool/pbupd_imm.c@52ec2d3eb851 |
children | 51f26fd967e2 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/simtool/lndwrite.c Wed Feb 17 06:08:28 2021 +0000 @@ -0,0 +1,33 @@ +/* + * This module implements lnd-write and lnd-erase commands. + */ + +#include <sys/types.h> +#include <string.h> +#include <strings.h> +#include <stdio.h> +#include <stdlib.h> +#include "curfile.h" + +cmd_lnd_write(argc, argv) + char **argv; +{ + int rc; + u_char record[255], *fixp; + + rc = select_ef_lnd(); + if (rc < 0) + return(rc); + memset(record, 0xFF, curfile_record_len); + fixp = record + curfile_record_len - 14; + rc = encode_phone_number_arg(argv[1], fixp, 0); + if (rc < 0) + return(rc); + if (argv[2]) { + rc = qstring_arg_to_gsm7(argv[2], record, + curfile_record_len - 14); + if (rc < 0) + return(rc); + } + return update_rec_op(0, 0x03, record, curfile_record_len); +}