summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/util.h
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-04-19 23:59:33 +0000
committerKarl Berry <karl@freefriends.org>2010-04-19 23:59:33 +0000
commitdddce3148a2bc785603576b18ffcf72d39adbe47 (patch)
tree14f4c79ef11bcf0820a8d4ff2ab0c5ac009c365c /Build/source/utils/asymptote/util.h
parenta01e51b01f5819b6091af48cdca581e9f2a9282e (diff)
asy 1.93
git-svn-id: svn://tug.org/texlive/trunk@17934 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/util.h')
-rw-r--r--Build/source/utils/asymptote/util.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/Build/source/utils/asymptote/util.h b/Build/source/utils/asymptote/util.h
index 57712ae78f0..73dc411b97d 100644
--- a/Build/source/utils/asymptote/util.h
+++ b/Build/source/utils/asymptote/util.h
@@ -36,8 +36,11 @@ string stripExt(string name, const string& suffix="");
void writeDisabled();
-// Check if global writes are disabled and name contains a directory.
-void checkLocal(string name);
+// Replace spaces in file part of name with underscores.
+string cleanpath(string name);
+
+// Construct the full output path.
+string outpath(string name);
// Construct a filename from the original, adding aux at the end, and
// changing the suffix.
@@ -109,8 +112,6 @@ extern bool False;
// Strip blank lines (which would break the bidirectional TeX pipe)
string stripblanklines(const string& s);
-extern char *currentpath;
-
const char *startPath();
const char* setPath(const char *s, bool quiet=false);
const char *changeDirectory(const char *s);
@@ -127,6 +128,10 @@ void execError(const char *command, const char *hint, const char *application);
// pop-up a new viewer if the old one has been closed.
void popupHelp();
+#ifdef __CYGWIN__
+inline long long llabs(long long x) {return x >= 0 ? x : -x;}
+#endif
+
inline Int Abs(Int x) {
#ifdef HAVE_LONG_LONG
return llabs(x);