Skip to content

Commit 1d62f44

Browse files
committed
Added some links to example projects
1 parent 64af1b2 commit 1d62f44

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

readme.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ int main() {
5151
}
5252
```
5353

54+
### Examples
55+
Another way to start a project is using one of the following examples:
56+
57+
[2 factor authenticator dongle](https://github.com/itzandroidtab/totp)
58+
59+
[mouse jiggler](https://github.com/itzandroidtab/mouse_jiggler)
60+
5461
### Constructors before running main
5562
C++ supports global constructors for objects. These objects will be constructed before main is executed. This is supported by klib. If you want to initialize hardware before these global constructors are called you need to add the attribute `__attribute__((__constructor__(x)))` to your function definition where x is a number above 101 (the first 100 are reserved by gcc and 101 is reserved for startup code by klib). This will make sure your function will be executed before any constructor is called.
5663

0 commit comments

Comments
 (0)