summaryrefslogtreecommitdiff
path: root/support/dktools/dk4getcwdd.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/dktools/dk4getcwdd.c')
-rw-r--r--support/dktools/dk4getcwdd.c76
1 files changed, 0 insertions, 76 deletions
diff --git a/support/dktools/dk4getcwdd.c b/support/dktools/dk4getcwdd.c
deleted file mode 100644
index 8de1403b8d..0000000000
--- a/support/dktools/dk4getcwdd.c
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
-Copyright (C) 2015-2020, Dirk Krause
-SPDX-License-Identifier: BSD-3-Clause
-*/
-
-/*
- WARNING: This file was generated by the dkct program (see
- http://dktools.sourceforge.net/ for details).
- Changes you make here will be lost if dkct is run again!
- You should modify the original source and run dkct on it.
- Original source: dk4getcwdd.ctr
-*/
-
-/** @file dk4getcwdd.c The dk4getcwdd module.
-*/
-
-
-#line 72 "dk4getcwdd.ctr"
-
-#include "dk4conf.h"
-#include "dk4getcwdd.h"
-
-#if DK4_CHAR_SIZE > 1
-#include "dk4getcwdw.h"
-#else
-#include "dk4getcwd8.h"
-#endif
-
-#if DK4_HAVE_ASSERT_H
-#ifndef ASSERT_H_INCLUDED
-#include <assert.h>
-#define ASSERT_H_INCLUDED 1
-#endif
-#endif
-
-
-
-
-#line 91 "dk4getcwdd.ctr"
-
-
-
-int
-dk4getcwd(dkChar *dptr, size_t sz, dk4_er_t *erp)
-{
-#if DK4_USE_ASSERT
- assert(NULL != dptr);
- assert(0 < sz);
-#endif
-#if DK4_CHAR_SIZE > 1
- return (
- dk4getcwd_wc(dptr, sz, erp)
- );
-#else
- return (
- dk4getcwd_c8(dptr, sz, erp)
- );
-#endif
-}
-
-
-
-dkChar *
-dk4getcwd_dup(dk4_er_t *erp)
-{
-#if DK4_CHAR_SIZE > 1
- return (
- dk4getcwd_wc_dup(erp)
- );
-#else
- return (
- dk4getcwd_c8_dup(erp)
- );
-#endif
-}
-