func (field *Field) Fore() Chtype { return (Chtype)(C.field_fore((*C.FIELD)(field))) }
// Foreground returns the field's foreground character attributes func (f *Field) Foreground() Char { return Char(C.field_fore(f.field)) }
// Foreground returns the field's foreground character attributes func (f *Field) Foreground() Char { return Char(C.field_fore((*C.FIELD)(f))) }
func (f *Field) Fore() int { return int(C.field_fore(f.field)) }