Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 10:47:27

0001 /*
0002  * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
0003  *                         University Research and Technology
0004  *                         Corporation.  All rights reserved.
0005  * Copyright (c) 2004-2006 The University of Tennessee and The University
0006  *                         of Tennessee Research Foundation.  All rights
0007  *                         reserved.
0008  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
0009  *                         University of Stuttgart.  All rights reserved.
0010  * Copyright (c) 2004-2005 The Regents of the University of California.
0011  *                         All rights reserved.
0012  * Copyright (c) 2008      Sun Microsystems, Inc.  All rights reserved.
0013  * Copyright (c) 2016      Intel, Inc.  All rights reserved.
0014  * Copyright (c) 2022      Nanook Consulting.  All rights reserved.
0015  * $COPYRIGHT$
0016  *
0017  * Additional copyrights may follow
0018  *
0019  * $HEADER$
0020  */
0021 
0022 /** @file:
0023  *
0024  */
0025 
0026 #ifndef _PMIX_PARSE_OPTIONS_H_
0027 #define _PMIX_PARSE_OPTIONS_H_
0028 
0029 #include "src/include/pmix_config.h"
0030 
0031 BEGIN_C_DECLS
0032 
0033 PMIX_EXPORT void pmix_util_parse_range_options(char *input, char ***output);
0034 
0035 PMIX_EXPORT void pmix_util_get_ranges(char *inp, char ***startpts, char ***endpts);
0036 
0037 END_C_DECLS
0038 #endif