logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

s3d_init - initialize s3d library

Author

SimonWunderlich
           Author of s3d

s3d                                                                                                  S3D_INIT(3)

Description

       This will initialize the s3d-library and the connection to the Server. It will return 0 on success in
       server initialization. name specifies the your programs name.

            int main(char argc, char **argv)
            {
                    if (!s3d_init(&argc, &argv, "Hello world"))
                    {
                            ...
                            s3d_quit();
                    }
                    return 0;
            }

Name

       s3d_init - initialize s3d library

Synopsis

#include<s3d.h>ints3d_init(int*argc,char***argv,constchar*name);

See Also