diff options
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/coding.h b/src/coding.h index baccd92032e..9a7707bf07f 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -430,11 +430,18 @@ struct coding_system | |||
| 430 | } while (0) | 430 | } while (0) |
| 431 | 431 | ||
| 432 | /* Extern declarations. */ | 432 | /* Extern declarations. */ |
| 433 | extern int decode_coding (), encode_coding (); | 433 | extern int decode_coding P_ ((struct coding_system *, unsigned char *, |
| 434 | extern int decoding_buffer_size (), encoding_buffer_size (); | 434 | unsigned char *, int, int, int *)); |
| 435 | extern int encode_coding P_ ((struct coding_system *, unsigned char *, | ||
| 436 | unsigned char *, int, int, int *)); | ||
| 437 | extern int decoding_buffer_size P_ ((struct coding_system *, int)); | ||
| 438 | extern int encoding_buffer_size P_ ((struct coding_system *, int)); | ||
| 439 | extern void detect_coding P_ ((struct coding_system *, unsigned char *, int)); | ||
| 440 | extern void detect_eol P_ ((struct coding_system *, unsigned char *, int)); | ||
| 435 | extern int conversion_buffer_size; | 441 | extern int conversion_buffer_size; |
| 436 | extern char *conversion_buffer, *get_conversion_buffer (); | 442 | extern char *conversion_buffer; |
| 437 | extern Lisp_Object Fcheck_coding_system (); | 443 | extern char *get_conversion_buffer P_ ((int)); |
| 444 | extern int setup_coding_system P_ ((Lisp_Object, struct coding_system *)); | ||
| 438 | extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; | 445 | extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; |
| 439 | extern Lisp_Object Qemacs_mule; | 446 | extern Lisp_Object Qemacs_mule; |
| 440 | extern Lisp_Object Qbuffer_file_coding_system; | 447 | extern Lisp_Object Qbuffer_file_coding_system; |