Mercurial > hg > xemacs-beta
diff modules/base64/base64.c @ 388:aabb7f5b1c81 r21-2-9
Import from CVS: tag r21-2-9
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:09:42 +0200 |
parents | 8efd647ea9ca |
children |
line wrap: on
line diff
--- a/modules/base64/base64.c Mon Aug 13 11:08:51 2007 +0200 +++ b/modules/base64/base64.c Mon Aug 13 11:09:42 2007 +0200 @@ -1,5 +1,5 @@ /* base64 interface for XEmacs. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 1999 Free Software Foundation, Inc. This file is part of XEmacs. @@ -22,15 +22,7 @@ /* Author: William Perry <wmperry@aventail.com> */ -#include <config.h> - -#include "lisp.h" -#include "buffer.h" -#include "insdel.h" -#include "lstream.h" -#ifdef FILE_CODING -#include "file-coding.h" -#endif +#include <emodules.h> unsigned char alphabet[64] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; @@ -416,14 +408,14 @@ } void -syms_of (void) +syms_of_base64 (void) { DEFSUBR(Fbase64_encode); DEFSUBR(Fbase64_decode); } void -vars_of (void) +vars_of_base64 (void) { Fprovide (intern ("base64")); }