# ==============================================================================
"""COUNT : print the number of lines, words and chars in a set of text files"""
# ==============================================================================
__author__  = "Christophe Schlick modified by Philippe Blasi"
__version__ = "1.0"
__date__    = "2022-11-12"
__usage__   = """
User input : <filename> [filename ...]
App output : number of lines, words and chars for each provided file"""
# ==============================================================================
from ezCLI import *
# ------------------------------------------------------------------------------
def count(name:str) -> str:
  """return the number of lines, words and chars stored in file 'name'"""
  pass
# ------------------------------------------------------------------------------
def parser(command:str) -> str:
  """parse 'command' and return line/word/char counters for provided files"""
  pass
# ==============================================================================
if __name__ == '__main__':
  userloop(parser, "Enter <filename> [filename ...]")
# ==============================================================================
