Codebase list unrtf / b4123084-081d-47d7-9b4d-d0d836bd1653/main Windows / unrtf_w.c
b4123084-081d-47d7-9b4d-d0d836bd1653/main

Tree @b4123084-081d-47d7-9b4d-d0d836bd1653/main (Download .tar.gz)

unrtf_w.c @b4123084-081d-47d7-9b4d-d0d836bd1653/mainraw · history · blame

#include "config.h"

#ifdef _WIN32
/*-
* Copyright (c) 1990, 1993
*	The Regents of the University of California.  All rights reserved.
*
* The quadratic code is derived from software contributed to Berkeley by
* Chris Torek.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in the
*    documentation and/or other materials provided with the distribution.
* 4. Neither the name of the University nor the names of its contributors
*    may be used to endorse or promote products derived from this software
*    without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/

#include <ctype.h>
#include <string.h>
#include <stdio.h>

/*
* Find the first occurrence of find in s, ignore case.
*/
char *strcasestr(const char *s, const char *find)
{
	/* Less code size, but quadratic performance in the worst case.  */
	char c, sc;
	size_t len;

	if ((c = *find++) != 0) {
		c = tolower((unsigned char)c);
		len = strlen(find);
		do {
			do {
				if ((sc = *s++) == 0)
					return (NULL);
			} while ((char)tolower((unsigned char)sc) != c);
		} while (strncasecmp(s, find, len) != 0);
		s--;
	}
	return ((char *)s);
}



unsigned int unrtf_ntohl(unsigned int in)
{
	const unsigned char *f = (const unsigned char*)&in;
	return(
		((unsigned int)(f[3])) +
		((unsigned int)(f[2]) << 8) +
		((unsigned int)(f[1]) << 16) +
		((unsigned int)(f[0]) << 24));
}

#endif

#include <Shlwapi.h>
#pragma comment(lib, "shlwapi.lib")

const char *path_thisexecpath()
{
#ifdef UNICODE
Error: Need to add UNICODE code here
#else
	static TCHAR text[MAX_PATH];
    if (text[0] == 0) {
        DWORD length = GetModuleFileName(NULL, text, MAX_PATH);
#ifdef NTDDI_WIN8_future
        PathCchRemoveFileSpec(text, MAX_PATH);
#else
        PathRemoveFileSpec(text);
#endif
    }
    return (const char *)text;
#endif
}

/* Location for program data: charmaps etc */
const char *unrtfDataDir()
{
    static char buffer[MAX_PATH];
    if (buffer[0] == 0) {
        const char *execdir = path_thisexecpath();
        if (strlen(execdir) + strlen("Share") + 4 < MAX_PATH) {
            snprintf(buffer, MAX_PATH, "%s\\Share\\", execdir);
        }
    }
    return buffer;
}