mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 20:01:56 +00:00
19 lines
297 B
C
19 lines
297 B
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright (c) 2021 Winlin */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <st.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
st_init();
|
|
|
|
for (int i = 0; i < 10000; i++) {
|
|
printf("#%03d, Hello, state-threads world!\n", i);
|
|
st_sleep(1);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|