C语言生成随机uuid编码

C语言生成随机uuid编码,第1张

概述C语言生成随机uuid编码

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

#include <stdio.h>#include <stdlib.h>  /** * Create random UUID * * @param buf - buffer to be filled with the uuID string */char *random_uuID( char buf[37] ){    const char *c = "89ab";    char *p = buf;    int n;      for( n = 0; n < 16; ++n )    {        int b = rand()%255;          switch( n )        {            case 6:                sprintf(                    p,"4%x",b%15 );                break;            case 8:                sprintf(                    p,"%c%x",c[rand()%strlen( c )],b%15 );                break;            default:                sprintf(                    p,"%02x",b );                break;        }          p += 2;          switch( n )        {            case 3:            case 5:            case 7:            case 9:                *p++ = '-';                break;        }    }      *p = 0;      return buf;}

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的C语言生成随机uuid编码全部内容,希望文章能够帮你解决C语言生成随机uuid编码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1232299.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存