Skip to content

Commit

Permalink
Merge pull request #2287 from Jarod42/doc_unsignedchar
Browse files Browse the repository at this point in the history
[doc] Write doc for `unsignedchar`
  • Loading branch information
samsinsane authored Oct 9, 2024
2 parents d9e44ea + a75235a commit bf235c0
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions website/docs/unsignedchar.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
unsignedchar - This page was auto-generated. Feel free to help us improve the documentation by creating a pull request.
Force sign of `char`

```lua
unsignedchar (value)
```

Note that `char` is still a distinct type from `signed char` and `unsigned char`.

### Parameters ###

`value` - needs documentation.
`value` is one of:


* Off: Make `char` signed. (default on msc)
* On: Make `char` unsigned.

Don't use that api to have default for gcc/clang

## Applies To ###

Expand All @@ -19,6 +27,5 @@ Premake 5.0.0 alpha 14 or later.
### Examples ###

```lua
unsignedchar (value)
unsignedchar "On"
```

0 comments on commit bf235c0

Please sign in to comment.