diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2007-10-03 12:04:58 +0000 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2007-10-03 12:04:58 +0000 |
commit | 77ed27d4de058b63c44ae7fdb7df956d5534f994 (patch) | |
tree | bbfce2185a89baec7e964c0b4f7788db1ccfc2c0 /xps/ghostxps.h | |
parent | 6dbf3a4c381f0ae1284db4c79bb286f8fa24b506 (diff) |
Remove a lot of debugging/progress/printf noise.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@2926 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'xps/ghostxps.h')
-rw-r--r-- | xps/ghostxps.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xps/ghostxps.h b/xps/ghostxps.h index 6456a16ef..5e6acb603 100644 --- a/xps/ghostxps.h +++ b/xps/ghostxps.h @@ -96,6 +96,9 @@ typedef struct xps_glyph_metrics_s xps_glyph_metrics_t; #define xps_free(ctx, ptr) \ gs_free_object(ctx->memory, ptr, __FUNCTION__); +size_t xps_strlcpy(char *destination, const char *source, size_t size); +size_t xps_strlcat(char *destination, const char *source, size_t size); + char *xps_strdup_imp(xps_context_t *ctx, const char *str, const char *function); char *xps_clean_path(char *name); void xps_absolute_path(char *output, char *pwd, char *path); |