r1718: *** empty log message ***
[uffi.git] / examples / atoifl.cl
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          atoifl.cl
6 ;;;; Purpose:       UFFI Example file to atoi/atof/atol
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Mar 2002
9 ;;;;
10 ;;;; $Id: atoifl.cl,v 1.2 2002/03/28 17:11:11 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; UFFI 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 (uffi:def-function ("atoi" c-atoi) 
22     ((str :cstring))
23   :returning :int)
24
25 (uffi:def-function ("atol" c-atoi) 
26     ((str :cstring))
27   :returning :long)
28
29 (uffi:def-function ("atof" c-atoi) 
30     ((str :cstring))
31   :returning :double)
32
33 (defun atoi (str)
34   "Returns a int from a string."
35   (uffi:with-cstring (str-cstring str)
36     (c-atoi str-cstring)))
37   
38 #+test-uffi
39 (progn
40   (flet ((print-results (str)
41            (format t "~&(atoi ~S) => ~S" str (atoi str))))
42     (print-results "55")))
43
44