summaryrefslogtreecommitdiff
path: root/apps/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-08-26 22:08:04 +0200
committerRichard Levitte <levitte@openssl.org>2019-08-28 10:33:45 +0200
commit16485a3ada49e68b1ae93ed4fe3b55fdb3a7e61e (patch)
tree05e933af32653ecba3c45ecaff5c41b5239a183b /apps/include
parentd5f854291336c96a3d2379ecc8c29f00ef516ad9 (diff)
downloadopenssl-new-16485a3ada49e68b1ae93ed4fe3b55fdb3a7e61e.tar.gz
Move print_param_types() to libapps, and give it indent argument
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9697)
Diffstat (limited to 'apps/include')
-rw-r--r--apps/include/app_params.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/include/app_params.h b/apps/include/app_params.h
new file mode 100644
index 0000000000..2060b5200e
--- /dev/null
+++ b/apps/include/app_params.h
@@ -0,0 +1,13 @@
+/*
+ * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the Apache License 2.0 (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+
+#include <openssl/core.h>
+
+int print_param_types(const char *thing, const OSSL_PARAM *pdefs, int indent);
+