r7061: initial property settings
[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 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20
21 (defpackage #:clsql-uffi
22   (:use #:cl #:uffi)
23   (:export
24    #:canonicalize-type-list
25    #:convert-raw-field
26    #:atoi
27    #:atol
28    #:atof
29    #:atol64
30    #:make-64-bit-integer
31    #:split-64-bit-integer)
32   (:documentation "Common functions for interfaces using UFFI"))
33