mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
19 lines
474 B
C
19 lines
474 B
C
/*********************************************************************
|
|
* Copyright 2010, UCAR/Unidata
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
* $Id$
|
|
* $Header$
|
|
*********************************************************************/
|
|
|
|
#ifndef RPCUTIL_H
|
|
#define RPCUTIL_H
|
|
|
|
/*Forward*/
|
|
struct RPCnode;
|
|
|
|
extern int rpcstrindex(char* s, char* match);
|
|
|
|
extern void rpccollectnodepath(struct RPCnode*, NClist* path);
|
|
|
|
#endif /*RPCUTIL_H*/
|