GS1 Syntax Dictionary: Linter reference
A reference to the AI component linter routines referred to by the GS1 Syntax Dictionary.
lint_hyphen.c File Reference

Purpose

The hyphen linter ensures that the given data contains only hyphens.

Functional Description

◆ gs1_lint_hyphen()

GS1_SYNTAX_DICTIONARY_API gs1_lint_err_t gs1_lint_hyphen ( const char *const  data,
size_t *const  err_pos,
size_t *const  err_len 
)

Used to validate that an AI component contains only hyphens.

Parameters
[in]dataPointer to the null-terminated data to be linted. Must not be NULL.
[out]err_posTo facilitate error highlighting, the start position of the bad data is written to this pointer, if not NULL.
[out]err_lenThe length of the bad data is written to this pointer, if not NULL.
Returns
GS1_LINTER_OK if okay.
GS1_LINTER_NOT_HYPHEN if the data contains a non-hyphen character.
47 {
48 
49  size_t len;
50 
51  assert(data);
52 
53  len = strlen(data);
54 
55  if (*data == '\0') {
56  if (err_pos) *err_pos = 0;
57  if (err_len) *err_len = 0;
58  return GS1_LINTER_NOT_HYPHEN;
59  }
60 
61  /*
62  * Data must not contain a non-hyphen character
63  *
64  */
65  if (strspn(data, "-") != len) {
66  if (err_pos) *err_pos = 0;
67  if (err_len) *err_len = len;
68  return GS1_LINTER_NOT_HYPHEN;
69  }
70 
71  return GS1_LINTER_OK;
72 
73 }
@ GS1_LINTER_NOT_HYPHEN
Only hyphens are permitted.
Definition: gs1syntaxdictionary.h:175
@ GS1_LINTER_OK
No issues were detected by the linter.
Definition: gs1syntaxdictionary.h:66