Path: blob/main/crypto/openssl/apps/include/platform.h
34878 views
/*1* Copyright 2019-2024 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89#ifndef OSSL_APPS_PLATFORM_H10# define OSSL_APPS_PLATFORM_H1112# include <openssl/e_os2.h>1314# if defined(OPENSSL_SYS_VMS) && defined(__DECC)15/*16* VMS C only for now, implemented in vms_decc_init.c17* If other C compilers forget to terminate argv with NULL, this function18* can be reused.19*/20char **copy_argv(int *argc, char *argv[]);21# endif2223# ifdef _WIN3224/*25* Win32-specific argv initialization that splits OS-supplied UNICODE26* command line string to array of UTF8-encoded strings.27*/28void win32_utf8argv(int *argc, char **argv[]);29# endif3031#endif323334