Remove CVS $Id$ keyword
[clsql.git] / uffi / clsql-uffi-package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-uffi-package.cl
6 ;;;; Purpose:       Package definitions for common UFFI interface routines
7 ;;;; Programmers:   Kevin M. Rosenberg
8 ;;;; Date Started:  Mar 2002
9 ;;;;
10 ;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; *************************************************************************
16
17 (in-package #:cl-user)
18
19 (defpackage #:clsql-uffi
20   (:use #:cl #:uffi)
21   (:export
22    #:find-and-load-foreign-library
23    #:canonicalize-type-list
24    #:convert-raw-field
25    #:atoi
26    #:atol
27    #:atof
28    #:atol64
29    #:make-64-bit-integer
30    #:make-128-bit-integer
31    #:split-64-bit-integer)
32   (:documentation "Common functions for interfaces using UFFI"))
33