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