package main

import "C"

type ByteResult struct {
    error *C.char
}

// Exported returns an error string.
// The caller must free the result using FreeBytesResult.
func Exported() ByteResult {
    var result ByteResult
    result.error = C.CString("boom")
    return result
}
