~ubuntu-branches/ubuntu/dapper/cmake/dapper

« back to all changes in this revision

Viewing changes to Source/CTest/Curl/base64.h

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2006-01-08 10:48:14 UTC
  • mfrom: (1.3.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060108104814-jmy1r2fydpohpc1g
Tags: 2.2.3-1
* New upstream release (Closes: #338324)
* support GNU/kFreeBSD in cmake (Closes: #340764)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __BASE64_H
2
 
#define __BASE64_H
3
 
/***************************************************************************
4
 
 *                                  _   _ ____  _     
5
 
 *  Project                     ___| | | |  _ \| |    
6
 
 *                             / __| | | | |_) | |    
7
 
 *                            | (__| |_| |  _ <| |___ 
8
 
 *                             \___|\___/|_| \_\_____|
9
 
 *
10
 
 * Copyright (C) 1998 - 2002, Daniel Stenberg, <daniel@haxx.se>, et al.
11
 
 *
12
 
 * This software is licensed as described in the file COPYING, which
13
 
 * you should have received as part of this distribution. The terms
14
 
 * are also available at http://curl.haxx.se/docs/copyright.html.
15
 
 * 
16
 
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17
 
 * copies of the Software, and permit persons to whom the Software is
18
 
 * furnished to do so, under the terms of the COPYING file.
19
 
 *
20
 
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21
 
 * KIND, either express or implied.
22
 
 *
23
 
 * $Id: base64.h,v 1.3 2003/01/14 14:12:36 andy Exp $
24
 
 ***************************************************************************/
25
 
int Curl_base64_encode(const void *data, int size, char **str);
26
 
int Curl_base64_decode(const char *str, void *data);
27
 
#endif