summaryrefslogtreecommitdiff
path: root/support/dktools/dk4appstt.c
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-10-12 03:04:00 +0000
committerNorbert Preining <norbert@preining.info>2020-10-12 03:04:00 +0000
commit0ce40abb18ec02ec6fd6bcc5f21612c88daa7578 (patch)
tree416289fe1448873fd8ca33051f50ad85bffa8aaa /support/dktools/dk4appstt.c
parentfdb18507cd80dc17f5a5256153d34668b4f4e61c (diff)
CTAN sync 202010120303
Diffstat (limited to 'support/dktools/dk4appstt.c')
-rw-r--r--support/dktools/dk4appstt.c179
1 files changed, 0 insertions, 179 deletions
diff --git a/support/dktools/dk4appstt.c b/support/dktools/dk4appstt.c
deleted file mode 100644
index 5cceeae26d..0000000000
--- a/support/dktools/dk4appstt.c
+++ /dev/null
@@ -1,179 +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: dk4appstt.ctr
-*/
-
-/** @file dk4appstt.c The dk4appstt module.
-*/
-
-
-#line 10 "dk4appstt.ctr"
-
-#include "dk4app.h"
-
-#ifndef DK4MEM_H_INCLUDED
-#include "dk4mem.h"
-#endif
-
-#ifndef DK4MPL_H_INCLUDED
-#include "dk4mpl.h"
-#endif
-
-#ifndef DK4STT_H_INCLUDED
-#include "dk4stt.h"
-#endif
-
-#ifndef DK4STRM_H_INCLUDED
-#include "dk4strm.h"
-#endif
-
-#ifndef DK4STRMR_H_INCLUDED
-#include "dk4strmr.h"
-#endif
-
-#ifndef DK4FS_H_INCLUDED
-#include "dk4fs.h"
-#endif
-
-#if DK4_HAVE_ASSERT_H
-#ifndef ASSERT_H_INCLUDED
-#include <assert.h>
-#define ASSERT_H_INCLUDED 1
-#endif
-#endif
-
-
-
-
-#line 46 "dk4appstt.ctr"
-
-
-
-size_t
-dk4app_string_table_size(const dkChar * const *texts)
-{
- size_t back = 0;
-
-
-#line 54 "dk4appstt.ctr"
- if (NULL != texts) {
- while (NULL != *(texts++)) { back++; }
- }
-
-#line 57 "dk4appstt.ctr"
- return back;
-}
-
-
-
-const dkChar * const *
-dk4app_string_table(
- dk4_app_t *app,
- const dkChar *shortname,
- const dkChar * const *deftexts
-)
-{
- dkChar buffer[DK4_MAX_PATH];
- dk4_string_table_t *sttptr;
- dk4_stream_t *istrm;
- const dkChar * const *back;
- size_t rqlen;
- int res;
- int ok;
-
-
-#line 77 "dk4appstt.ctr"
-#if DK4_USE_ASSERT
- assert(NULL != app);
- assert(NULL != shortname);
- assert(NULL != deftexts);
-#endif
- back = deftexts;
- if ((NULL != app) && (NULL != shortname)) {
-
-#line 84 "dk4appstt.ctr"
- back = NULL;
- rqlen = dk4app_string_table_size(deftexts);
-
-#line 86 "dk4appstt.ctr"
- sttptr = (dk4_string_table_t *)dk4sto_it_find_like(app->i_stt,shortname,1);
- if (NULL == sttptr) {
-
-#line 88 "dk4appstt.ctr"
- res = dk4app_search_data_file(
- buffer, DK4_SIZEOF(buffer,dkChar), app, shortname,
- DK4_FS_DATA_MAX_SYS, 1, NULL
- );
- if (0 < res) {
-
-#line 93 "dk4appstt.ctr"
- sttptr = dk4stt_open(shortname, rqlen, NULL);
- if (NULL != sttptr) {
-
-#line 95 "dk4appstt.ctr"
- ok = 0;
- istrm = dk4stream_open_file_reader(buffer, NULL);
- if (NULL != istrm) {
-
-#line 98 "dk4appstt.ctr"
- res = dk4stt_apply_stream(sttptr, istrm, app->encoding, NULL);
- if (0 < res) {
-
-#line 100 "dk4appstt.ctr"
- if (0 < dk4sto_add(app->s_stt, (void *)sttptr, NULL)) {
- ok = 1;
-
-#line 102 "dk4appstt.ctr"
- } else {
-
-#line 103 "dk4appstt.ctr"
- }
- } else {
-
-#line 105 "dk4appstt.ctr"
- }
- dk4stream_close(istrm, NULL);
- } else {
-
-#line 108 "dk4appstt.ctr"
- }
- if (0 == ok) {
- dk4stt_close(sttptr);
- sttptr = NULL;
- }
- } else {
-
-#line 114 "dk4appstt.ctr"
- }
- } else {
-
-#line 116 "dk4appstt.ctr"
- }
- }
- if (NULL != sttptr) {
-
-#line 119 "dk4appstt.ctr"
- if (sttptr->nstrings >= rqlen) {
- back = (const dkChar * const *)(sttptr->strings);
- }
- }
- if (NULL == back) {
-
-#line 124 "dk4appstt.ctr"
- back = deftexts;
- }
- }
-
-#line 127 "dk4appstt.ctr"
- return back;
-}
-
-