From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 61510 invoked by alias); 10 Sep 2018 20:44:44 -0000 Mailing-List: contact fortran-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: fortran-owner@gcc.gnu.org Received: (qmail 61498 invoked by uid 89); 10 Sep 2018 20:44:43 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=3.0 required=5.0 tests=BAYES_50,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,LIBERO,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_PASS autolearn=no version=3.3.2 spammy=UD:it, Hx-languages-length:241, H*x:Mailer, H*UA:Mailer X-HELO: libero.it Received: from smtp-17-i2.italiaonline.it (HELO libero.it) (213.209.12.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 10 Sep 2018 20:44:43 +0000 Received: from oxapps-14-079.iol.local ([10.101.8.89]) by smtp-17.iol.local with SMTP id zT32fAUXbY6GczT32f9epI; Mon, 10 Sep 2018 22:44:40 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=libero.it; s=s2014; t=1536612280; bh=8dBXKPHO9hCxxpXYWXQzHwx2H/zD0mwlILFp2X/jkYQ=; h=Date:From:To:Subject; b=LSRswVLAVpQJEFLD4t1Xd1tk3Od2Y3SfPKtgiLB+1H6yVzjbC+K7trDavenbElGOS viZVDeQNsquddN/pWckVC3aC48yCdzdwiG5szUwS6OAGLdKAzARAVOisxyf8yZ7NAA L7ZT4QrhHb5ojokubYIx6IK+ZgHoG6vQ4CjpN+DwMkFdPoe/MS0lU+JVGmHa2zHS5I xCvortCPY4cbI+xvSI/Q0XyU1N70PCs6TcyYlyhveTH2l83yi7nUaOflsFOY8Zx0Hr iQ+94w1vbJldrpmDF79eGWe3sB7ZK5D2PQ2lPj0983/UIOcU3Z8mauRq415474+Fgs CubH+LuC6otlw== Date: Mon, 10 Sep 2018 20:44:00 -0000 From: Angelo Graziosi To: fortran@gcc.gnu.org Message-ID: <1142960346.18575.1536612280147@mail.libero.it> Subject: Iso C binding and C uint8_t type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2018-09/txt/msg00086.txt.bz2 Which iso C binding constant can we use to interface a C routine using the C type uint8_t? For example void print_uint8_t(uint8_t u) { ... } C_INT, C_INT8_T, C_INT16_T, C_CHAR or what else? TIA, Angelo.