Differenze tra le versioni di "Isascii ()"
Da Gambas-it.org - Wikipedia.
Riga 13: | Riga 13: | ||
<FONT color=Gray>' ''int isascii(int c)'' | <FONT color=Gray>' ''int isascii(int c)'' | ||
' ''Checks whether c is a 7-bit unsigned char value that fits into the ASCII character set (code between 0 and octal 0177 inclusive).''</font> | ' ''Checks whether c is a 7-bit unsigned char value that fits into the ASCII character set (code between 0 and octal 0177 inclusive).''</font> | ||
− | Private <FONT color=#B22222> | + | Private Extern <FONT color=#B22222>isascii_C</font>(num As Integer) As Integer In "<FONT color=#B22222>libc:6</font>" <FONT color=#B22222>'''Exec "isascii"'''</font> |
'''Public''' Sub Main() | '''Public''' Sub Main() |
Versione delle 04:07, 21 set 2018
La funzione della libreria di C
int isascii(int c)
ritorna un valore diverso da 0 (Vero), se il valore numerico di "c" è un valore char unsigned 7-bit che si inserisce nel gruppo di caratteri ASCII compreso tra 0 e 127.
Volendola utilizzare in Gambas, bisognerà dichiararla con Extern, nonché dichiarare la libreria di C: libc.so.6, nella quale la funzione è contenuta. Da sottolineare che, poiché questa funzione esterna di C "isascii()" è omonima alla funzione di Gambas "IsAscii()", bisognerà assegnarle un nome a piacere, ma si dovrà anche richiamare il suo vero nome con il comando Exec.
Dunque avremo ad esempio:
Private Extern isascii_C(num As Integer) As Integer In "libc:6" Exec "isascii"
Semplice esempio di uso in Gambas:
' int isascii(int c) ' Checks whether c is a 7-bit unsigned char value that fits into the ASCII character set (code between 0 and octal 0177 inclusive). Private Extern isascii_C(num As Integer) As Integer In "libc:6" Exec "isascii" Public Sub Main() Dim i As Integer i = isascii_C(127) Print i, Cbool(i) End