You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a printf function in uucore, which is used by several utils. Most notably, it's basically the entire implementation of the printf utils. This makes sense, but it's not correct, because the printffunction should not handle escape sequences, but the printfutil should.
So, we should split the two. Probably, this means that the util is best written entirely separate from the function. But another option is to share some functionality still.
I'm already working on this, so I'm assigning myself :)