mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-23 09:30:48 +00:00
9628f69f4e
git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@97 4df02467-bbd4-4a76-a152-e7ce94205b78
35 lines
1.0 KiB
C
35 lines
1.0 KiB
C
// ACME - a crossassembler for producing 6502/65c02/65816/65ce02 code.
|
|
// Copyright (C) 1998-2016 Marco Baye
|
|
// Have a look at "acme.c" for further info
|
|
//
|
|
// Character encoding stuff
|
|
#ifndef encoding_H
|
|
#define encoding_H
|
|
|
|
|
|
#include <stdio.h> // for FILE*
|
|
|
|
|
|
//struct encoder;
|
|
extern const struct encoder *encoder_current; // gets set before each pass TODO - set for each part
|
|
extern const struct encoder encoder_raw;
|
|
extern const struct encoder encoder_pet;
|
|
extern const struct encoder encoder_scr;
|
|
extern const struct encoder encoder_file;
|
|
extern char *encoding_loaded_table; // ...loaded from file
|
|
|
|
|
|
// prototypes
|
|
|
|
// convert character using current encoding
|
|
extern char encoding_encode_char(char byte);
|
|
// set "raw" as default encoding
|
|
extern void encoding_passinit(void);
|
|
// try to load encoding table from given file
|
|
extern void encoding_load_from_file(char target[256], FILE *stream);
|
|
// lookup encoder held in DynaBuf and return its struct pointer (or NULL on failure)
|
|
extern const struct encoder *encoding_find(void);
|
|
|
|
|
|
#endif
|