CCSDS Proximity-1 Space Link Protocol (211.0-B)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mass replace Printf.sprintf/printf with Fmt.str/pr (merlint E200)

112 files across the monorepo. Printf.sprintf → Fmt.str,
Printf.printf → Fmt.pr for consistent formatting library usage.

+1 -1
+1 -1
test/interop/ccsds211/test.ml
··· 20 20 let string_to_hex s = 21 21 let buf = Buffer.create (String.length s * 2) in 22 22 String.iter 23 - (fun c -> Buffer.add_string buf (Printf.sprintf "%02x" (Char.code c))) 23 + (fun c -> Buffer.add_string buf (Fmt.str "%02x" (Char.code c))) 24 24 s; 25 25 Buffer.contents buf 26 26