1*c5c4113dSnw141292 /* 2*c5c4113dSnw141292 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 3*c5c4113dSnw141292 * Use is subject to license terms. 4*c5c4113dSnw141292 */ 5*c5c4113dSnw141292 6*c5c4113dSnw141292 #ifndef _SQLITE_MISC_H 7*c5c4113dSnw141292 #define _SQLITE_MISC_H 8*c5c4113dSnw141292 9*c5c4113dSnw141292 #pragma ident "%Z%%M% %I% %E% SMI" 10*c5c4113dSnw141292 11*c5c4113dSnw141292 #ifdef __cplusplus 12*c5c4113dSnw141292 extern "C" { 13*c5c4113dSnw141292 #endif 14*c5c4113dSnw141292 15*c5c4113dSnw141292 /* 16*c5c4113dSnw141292 * defines an extra temp directory to try first 17*c5c4113dSnw141292 */ 18*c5c4113dSnw141292 extern const char *sqlite_temp_directory; 19*c5c4113dSnw141292 20*c5c4113dSnw141292 #ifdef __cplusplus 21*c5c4113dSnw141292 } 22*c5c4113dSnw141292 #endif 23*c5c4113dSnw141292 24*c5c4113dSnw141292 #endif /* _SQLITE_MISC_H */ 25