663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
729 use dc_string, only: uchar
730 use dc_message, only: messagenotify
731 implicit none
732 type(ARGS), intent(inout) :: arg
733 character(*), intent(in) :: category
734 character(*), intent(in) :: msg
735 character(len = *), parameter :: subname = 'DCArgsHelpMsg'
736 continue
737 if (.not. arg % initialized) then
738 call messagenotify('W', subname, 'Call Open before Help in dc_args.')
739 call dcargsopen(arg)
740 end if
741 call dchashput(arg % helpmsg, key=uchar(category),
value=msg)