OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
gt2aParse.h
1/*
2GameSpy GT2 SDK
3GT2Action - sample app
4Dan "Mr. Pants" Schoenblum
5dan@gamespy.com
6
7Copyright 2000 GameSpy Industries, Inc
8
9*/
10
11#ifndef _GT2APARSE_H_
12#define _GT2APARSE_H_
13
14// Search the input for "\key\".
15// Returns the value following the key,
16// or NULL if the key wasn't found.
17// If key is NULL, returns the first key
18// in input, or NULL if there's an error.
20char * ParseKeyValue
21(
22 char * input,
23 const char * key
24);
25
26#endif