mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
85 lines
2.5 KiB
C
85 lines
2.5 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "License"); you may not use this file except in
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code,
|
|
* released March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
* Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*
|
|
* Contributors:
|
|
* Daniel Veditz <dveditz@netscape.com>
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#ifdef XP_MAC
|
|
#include <stdlib.h>
|
|
#else
|
|
#include <malloc.h>
|
|
#endif
|
|
|
|
#define PR_ASSERT assert
|
|
#define PR_Malloc malloc
|
|
#define PR_FREEIF(x) do { if (x) free(x); } while(0)
|
|
#define PL_strfree free
|
|
#define PL_strcmp strcmp
|
|
#define PL_strdup strdup
|
|
#define PL_strcpy strcpy
|
|
|
|
#define PR_Open(a,b,c) fopen((a),(b))
|
|
#define PR_Read(f,d,n) fread((d),1,(n),(f))
|
|
#define PR_Write(f,s,n) fwrite((s),1,(n),(f))
|
|
#define PR_Close fclose
|
|
#define PR_Seek fseek
|
|
|
|
#define PR_BEGIN_EXTERN_C extern "C" {
|
|
#define PR_END_EXTERN_C }
|
|
|
|
#ifdef XP_MAC
|
|
#define PR_EXTERN(__type) extern __declspec(export) __type
|
|
#define PR_PUBLIC_API(__type) __declspec(export) __type
|
|
#else
|
|
#define PR_EXTERN(__type) extern _declspec(dllexport) __type
|
|
#define PR_PUBLIC_API(__type) _declspec(dllexport) __type
|
|
#endif
|
|
|
|
#define NS_STATIC_CAST(__type, __ptr) ((__type)(__ptr))
|
|
|
|
#define PRFileDesc FILE
|
|
typedef long PRInt32;
|
|
typedef unsigned long PRUint32;
|
|
typedef short PRInt16;
|
|
typedef unsigned short PRUint16;
|
|
typedef char PRBool;
|
|
typedef unsigned char PRUint8;
|
|
|
|
#define PR_TRUE 1
|
|
#define PR_FALSE 0
|
|
|
|
#define INVALID_SXP -1
|
|
#define NON_SXP -2
|
|
#define VALID_SXP 1
|
|
#define MATCH 0
|
|
#define NOMATCH 1
|
|
#define ABORTED -1
|
|
|
|
#define PR_RDONLY "rb"
|
|
#define PR_SEEK_SET SEEK_SET
|
|
|
|
#define XP_RegExpValid(a) NON_SXP
|
|
#define XP_RegExpMatch(a,b,c) PR_FALSE
|
|
|