1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-30 05:10:37 +00:00

Added Functions for _SHR\_SHL

This commit is contained in:
Kobolticus 2018-10-29 23:01:04 -04:00 committed by GitHub
parent 8202f98e10
commit f3eba1aee2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29741,3 +29741,9 @@ void reinit_glut_callbacks(){
#endif
}
int64 _SHL(int64 a1,int b1)
{return a1<<b1;}
int64 _SHR(int64 a1,int b1)
{return a1>>b1;}