aboutsummaryrefslogtreecommitdiff
path: root/progs/tparm_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tparm_type.h')
-rw-r--r--progs/tparm_type.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/progs/tparm_type.h b/progs/tparm_type.h
index 7c102a309c1a..2f7bd0771d53 100644
--- a/progs/tparm_type.h
+++ b/progs/tparm_type.h
@@ -1,5 +1,5 @@
/****************************************************************************
- * Copyright 2020 Thomas E. Dickey *
+ * Copyright 2020,2023 Thomas E. Dickey *
* Copyright 2014 Free Software Foundation, Inc. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
@@ -32,7 +32,7 @@
****************************************************************************/
/*
- * $Id: tparm_type.h,v 1.3 2020/10/24 17:11:33 tom Exp $
+ * $Id: tparm_type.h,v 1.4 2023/04/08 15:41:20 tom Exp $
*
* determine expected/actual number of parameters to setup for tparm
*/
@@ -45,8 +45,10 @@
typedef enum {
Other = -1
,Numbers = 0
+ ,Str
,Num_Str
,Num_Str_Str
+ ,Str_Str
} TParams;
extern TParams tparm_type(const char *name);