euc.c (350a3d3e48232a1040bc3ae87865be85fb5e39de) | euc.c (da8a9b61c7adc203ceb48909815931ac7b164300) |
---|---|
1/*- 2 * Copyright (c) 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Paul Borman at Krystal Technologies. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 32 unchanged lines hidden (view full) --- 41 42#include <sys/types.h> 43 44#include <errno.h> 45#include <rune.h> 46#include <stddef.h> 47#include <stdio.h> 48#include <stdlib.h> | 1/*- 2 * Copyright (c) 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Paul Borman at Krystal Technologies. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 32 unchanged lines hidden (view full) --- 41 42#include <sys/types.h> 43 44#include <errno.h> 45#include <rune.h> 46#include <stddef.h> 47#include <stdio.h> 48#include <stdlib.h> |
49#include <string.h> |
|
49 50rune_t _EUC_sgetrune __P((const char *, size_t, char const **)); 51int _EUC_sputrune __P((rune_t, char *, size_t, char **)); 52 53typedef struct { 54 int count[4]; 55 rune_t bits[4]; 56 rune_t mask; --- 166 unchanged lines hidden --- | 50 51rune_t _EUC_sgetrune __P((const char *, size_t, char const **)); 52int _EUC_sputrune __P((rune_t, char *, size_t, char **)); 53 54typedef struct { 55 int count[4]; 56 rune_t bits[4]; 57 rune_t mask; --- 166 unchanged lines hidden --- |