Annotation of freem/src/cmd_throw.c, revision 1.1

1.1     ! snw         1: /*
        !             2:  *                            *
        !             3:  *                           * *
        !             4:  *                          *   *
        !             5:  *                     ***************
        !             6:  *                      * *       * *
        !             7:  *                       *  MUMPS  *
        !             8:  *                      * *       * *
        !             9:  *                     ***************
        !            10:  *                          *   *
        !            11:  *                           * *
        !            12:  *                            *
        !            13:  *
        !            14:  *   cmd_throw.c
        !            15:  *    Implementation of the THROW command
        !            16:  *
        !            17:  *  
        !            18:  *   Author: Serena Willis <jpw@coherent-logic.com>
        !            19:  *    Copyright (C) 1998 MUG Deutschland
        !            20:  *    Copyright (C) 2023 Coherent Logic Development LLC
        !            21:  *
        !            22:  *
        !            23:  *   This file is part of FreeM.
        !            24:  *
        !            25:  *   FreeM is free software: you can redistribute it and/or modify
        !            26:  *   it under the terms of the GNU Affero Public License as published by
        !            27:  *   the Free Software Foundation, either version 3 of the License, or
        !            28:  *   (at your option) any later version.
        !            29:  *
        !            30:  *   FreeM is distributed in the hope that it will be useful,
        !            31:  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
        !            32:  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        !            33:  *   GNU Affero Public License for more details.
        !            34:  *
        !            35:  *   You should have received a copy of the GNU Affero Public License
        !            36:  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
        !            37:  *
        !            38:  **/
        !            39: 
        !            40: #include <string.h>
        !            41: #include <stdlib.h>
        !            42: #include "mpsdef.h"
        !            43: #include "mcommand.h"
        !            44: 
        !            45: MRESULT cmd_throw(MACTION *ra)
        !            46: {
        !            47:     char *throw_buf;
        !            48:     register char ch;
        !            49:     
        !            50:     if (rtn_dialect () != D_FREEM) {
        !            51:         return NOSTAND;
        !            52:     }
        !            53:     
        !            54:     throw_buf = (char *) malloc (STRLEN * sizeof (char));
        !            55:     NULLPTRCHK (throw_buf, "cmd_throw");
        !            56:     
        !            57:     expr (STRING);
        !            58:     if (merr ()) return merr ();
        !            59:     
        !            60:     stcnv_m2c (argptr);
        !            61:     
        !            62:     snprintf (throw_buf, STRLEN - 1, ",%s,\201", argptr);
        !            63:     
        !            64:     merr_raise (merr_set_ecode (throw_buf));   
        !            65:     
        !            66:     free (throw_buf);
        !            67:     
        !            68:     if (merr ()) return merr ();
        !            69:     
        !            70:     while ((ch = *(codptr++)) != SP && ch != EOL) ; /* skip to the end of the command */
        !            71: 
        !            72:     *ra = RA_NEXTCMND;
        !            73:     return merr ();
        !            74: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>