8d65aa52d24794eaad30f13f960dfa2359afb5ce
[uffi.git] / tests / atoifl.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          atoifl.lisp
6 ;;;; Purpose:       UFFI Example file to atoi/atof/atol
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Mar 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002-2003 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; *************************************************************************
15
16 (in-package #:uffi-tests)
17
18 (uffi:def-function ("atoi" c-atoi) 
19     ((str :cstring))
20   :returning :int)
21
22 (uffi:def-function ("atol" c-atol) 
23     ((str :cstring))
24   :returning :long)
25
26 (uffi:def-function ("atof" c-atof) 
27     ((str :cstring))
28   :returning :double)
29
30 (defun atoi (str)
31   "Returns a int from a string."
32   (uffi:with-cstring (str-cstring str)
33     (c-atoi str-cstring)))
34
35 (defun atof (str)
36   "Returns a double float from a string."
37   (uffi:with-cstring (str-cstring str)
38     (c-atof str-cstring)))
39   
40 (deftest atoi.1 (atoi "123") 123)
41 (deftest atoi.2 (atoi "") 0)
42 (deftest atof.3 (atof "2.23") 2.23d0)