source: trunk/athena/bin/quota/mountxdr.c @ 11003

Revision 11003, 334 bytes checked in by ghudson, 27 years ago (diff)
Pare down to xdr_path, the only function we were actually using.
  • Property svn:executable set to *
Line 
1#ifndef lint
2/* @(#)mountxdr.c       2.1 86/04/14 NFSSRC */
3static  char sccsid[] = "@(#)mountxdr.c 1.1 86/02/05 Copyr 1984 Sun Micro";
4#endif
5
6#include <stdio.h>
7#include <sys/types.h>
8#include <rpc/rpc.h>
9
10bool_t
11xdr_path(xdrs, pathp)
12        XDR *xdrs;
13        char **pathp;
14{
15        if (xdr_string(xdrs, pathp, 1024)) {
16                return(TRUE);
17        }
18        return(FALSE);
19}
Note: See TracBrowser for help on using the repository browser.