r1555: *** empty log message ***
[uffi.git] / tests / gethostname.cl
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          gethostname.cl
6 ;;;; Purpose:       UFFI Example file to get hostname of system
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: gethostname.cl,v 1.5 2002/03/14 21:03:12 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
22 ;;; This example is inspired by the example on the CL-Cookbook web site
23
24 (uffi:def-function ("gethostname" c-gethostname) 
25     ((name :cstring)
26      (len :int))
27   :returning :int)
28
29 (defun gethostname ()
30   "Returns the hostname"
31   (let* ((name (uffi:allocate-foreign-string 256))
32          (result (c-gethostname name 256)))
33     (unwind-protect
34         (if (zerop result)
35             (uffi:convert-from-foreign-string name)
36           (error "gethostname() failed."))
37       (uffi:free-foreign-object name))))
38     
39 #+test-uffi
40 (format t "~&Hostname: ~A" (gethostname))
41