Hi Alejandro, On Tue, Nov 16, 2021 at 1:34 PM Alejandro Colomar (man-pages) via cfe-dev <cfe-...@lists.llvm.org> wrote: > First of all, > I see unnecessary (probably over-engineered) qualifiers: > > - _Null_unspecified seems to me the same as nothing. > If I didn't specify its nullability, > it's by definition unspecified. Right? > > - _Nullable seems to me also the same as nothing. > The language allows for a pointer to be NULL, > so if you don't specify if it can or not be null, > you better stay on the safe side and consider it as nullable.
_Nullable is used in conjunction with the `#pragma clang assume_nonnull begin/end` pragma that flips the default: ``` #pragma clang assume_nonnull begin int *global_int_ptr; // implicitly _Nonnull #pragma clang assume_nonnull end ``` Within these pragma brackets, you need to use _Nullable to get the opposite behavior. The pragma itself is useful because it reduces the amount of noise the annotations introduce. When these annotations were adopted in Apple SDKs, it was found that in practice most pointers are non-nullable. So if we only had _Nonnull, we would have to annotate most pointers. Instead, Apple's SDKs bracket every header contents with this pragma, and instead annotate nullable pointers, significantly reducing the amount of annotations. _Null_unspecified is a way to say that nullability is complicated due to legacy reasons (for example, a function may return NULL under extremely rare circumstances that most users don't care about, so we want to allow returning NULL, while suppressing warnings at the usage site if the user assumes that the returned pointer is non-NULL). It might have been useful for bringing certain legacy APIs into the annotated world with more checks enabled. But right now it is used extremely rarely in Apple's SDKs and therefore it is unclear to me personally whether it really pulls its weight at this point. Dmitri -- main(i,j){for(i=2;;i++){for(j=2;j<i;j++){if(!(i%j)){j=0;break;}}if (j){printf("%d\n",i);}}} /*Dmitri Gribenko <griboz...@gmail.com>*/