2 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
8 #include "rexxsyslib_intern.h"
10 /*****************************************************************************
13 #include <clib/rexxsyslib_protos.h>
15 AROS_LH2(VOID
, ClearRexxMsg
,
18 AROS_LHA(struct RexxMsg
*, msgptr
, A0
),
19 AROS_LHA(ULONG
, count
, D0
),
22 struct Library
*, RexxSysBase
, 26, RexxSys
)
25 This function will clear a specified number of arguments by calling
26 DeleteArgstring on them.
29 msgptr - RexxMsg to clear the arguments from
30 count - The number of arguments in the message to clear
42 FillRexxMsg(), DeleteArgstring()
47 *****************************************************************************/
53 for (i
= 0; i
< count
; i
++)
55 if (msgptr
->rm_Args
[i
] != 0)
57 DeleteArgstring(RXARG(msgptr
,i
));
58 msgptr
->rm_Args
[i
] = 0;
62 ReturnVoid("ClearRexxMsg");