1
0
mirror of https://github.com/bluekitchen/btstack.git synced 2025-03-24 22:43:35 +00:00
btstack/tool/misc/replace_bzero_with_memset.cocci

6 lines
70 B
Plaintext
Raw Normal View History

2016-04-10 21:53:56 +02:00
@@
expression src, size;
@@
- bzero(src, size)
+ memset(src, 0, size)