NCEPLIBS-bufr  12.0.0
strcln.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Reset the string cache.
3 C>
4 C> @author J. Woollen @date 1994-01-06
5 
6 C> This subroutine resets the internal mnemonic string cache.
7 C> The string cache is a performance-enhancing feature which saves
8 C> processing time when the same mnemonics are encountered repeatedly.
9 C>
10 C> @author J. Woollen @date 1994-01-06
11 
12  SUBROUTINE strcln
13 
14  USE modv_mxs
15 
16  COMMON /stcach/ mstr,nstr,lstr,luns(mxs,2),usrs(mxs),icon(52,mxs)
17  CHARACTER*80 USRS
18 
19  mstr = mxs
20  nstr = 0
21  lstr = 0
22  RETURN
23  END
This module declares and initializes the MXS variable.
integer, parameter, public mxs
Maximum number of entries in the internal string cache.
subroutine strcln
This subroutine resets the internal mnemonic string cache.
Definition: strcln.f:13