mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
*C.char => charptr
This commit is contained in:
parent
dcbb196e21
commit
254afcb2d0
@ -43,7 +43,7 @@ pub fn tos2(s byteptr) string {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn tos3(s *C.char) string {
|
||||
pub fn tos3(s charptr) string {
|
||||
if s == 0 {
|
||||
panic('tos3: nil string')
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ fn C.atof() int
|
||||
fn C.tolower() int
|
||||
fn C.toupper() int
|
||||
fn C.getchar() int
|
||||
fn C.strerror() *C.char
|
||||
fn C.strerror() charptr
|
||||
fn C.snprintf() int
|
||||
fn C.fprintf(byteptr, ...byteptr)
|
||||
|
||||
|
@ -96,7 +96,7 @@ pub fn tos2(s byteptr) string {
|
||||
}
|
||||
|
||||
// Same as `tos2`, but for char*, to avoid warnings
|
||||
pub fn tos3(s *C.char) string {
|
||||
pub fn tos3(s charptr) string {
|
||||
if s == 0 {
|
||||
panic('tos3: nil string')
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user