15c10afb9Smrg 25c10afb9Smrg/* 35c10afb9SmrgCopyright 1996, 1998 The Open Group 45c10afb9Smrg 55c10afb9SmrgPermission to use, copy, modify, distribute, and sell this software and its 65c10afb9Smrgdocumentation for any purpose is hereby granted without fee, provided that 75c10afb9Smrgthe above copyright notice appear in all copies and that both that 85c10afb9Smrgcopyright notice and this permission notice appear in supporting 95c10afb9Smrgdocumentation. 105c10afb9Smrg 115c10afb9SmrgThe above copyright notice and this permission notice shall be included 125c10afb9Smrgin all copies or substantial portions of the Software. 135c10afb9Smrg 145c10afb9SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 155c10afb9SmrgOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 165c10afb9SmrgMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 175c10afb9SmrgIN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR 185c10afb9SmrgOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 195c10afb9SmrgARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 205c10afb9SmrgOTHER DEALINGS IN THE SOFTWARE. 215c10afb9Smrg 225c10afb9SmrgExcept as contained in this notice, the name of The Open Group shall 235c10afb9Smrgnot be used in advertising or otherwise to promote the sale, use or 245c10afb9Smrgother dealings in this Software without prior written authorization 255c10afb9Smrgfrom The Open Group. 265c10afb9Smrg*/ 275c10afb9Smrg 285c10afb9Smrg 295c10afb9SmrgStatus 305c10afb9SmrgGetConfig ( 31cf2f63c2Smrg const char *configFile, 32cf2f63c2Smrg const char *serviceName, 335c10afb9Smrg Bool *managed, 345c10afb9Smrg char **startCommand, 355c10afb9Smrg char **proxyAddress); 365c10afb9Smrg 375c10afb9Smrg#ifdef NEED_STRCASECMP 385c10afb9Smrgint 395c10afb9Smrgncasecmp ( 40cf2f63c2Smrg const char *str1, 41cf2f63c2Smrg const char *str2, 425c10afb9Smrg int n); 435c10afb9Smrg#else 445c10afb9Smrg#include <string.h> 455c10afb9Smrg#define ncasecmp(s1,s2,n) strncasecmp(s1,s2,n) 465c10afb9Smrg#endif /* NEED_STRCASECMP */ 47